﻿/* ================= Page Center ================= */
/* Reduce top spacing of register form wrapper */
.register-wrapper {
    min-height: auto; /* remove full viewport height forcing large gap */
    padding-top: 20px; /* adjust to smaller value as needed */
    padding-bottom: 40px; /* keep bottom spacing */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* align form closer to top */
}


/* ================= Register Card ================= */
.register-form {
    background: #ffffff; /* plain white */
    padding: 70px 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 420px;
    width: 100%;
    color: #000000; /* keep original text color */
}

    /* ================= Heading ================= */
    .register-form h2 {
        font-weight: 700;
        color: #000000; /* keep original */
    }

    /* ================= Form Group ================= */
    .register-form .form-group {
        margin-bottom: 18px;
    }

    /* ================= Inputs ================= */
    .register-form .form-control {
        height: 48px;
        font-size: 15px;
        border-radius: 8px;
        border: 1px solid #ccc;
        padding: 0 14px;
        transition: all 0.3s ease;
    }

        .register-form .form-control:focus {
            border-color: #4caf50;
            box-shadow: 0 0 0 0.15rem rgba(76, 175, 80, 0.25);
        }

/* ================= Button (Ocean Theme Only) ================= */
.register-theme-btn {
    margin-top: 25px;
    width: 100%;
    height: 50px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(90deg, #0B3037, #134E5E); /* ocean gradient */
    cursor: pointer;
    transition: all 0.3s ease;
}

    .register-theme-btn:hover {
        background: linear-gradient(90deg, #134E5E, #0B3037); /* hover gradient */
    }

/* ================= Validation Text ================= */
.text-danger {
    font-size: 13px;
}
