﻿/* ================= Page Center ================= */
.login-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 */
}

/* ================= Login Card ================= */
.login-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 text color as original */
}

/* ================= Title ================= */
.login-title {
    font-weight: 700;
    color: #000000; /* original color */
}

/* ================= Form Group ================= */
.login-form .form-group {
    margin-bottom: 20px;
}

/* ================= Inputs ================= */
.login-input {
    height: 48px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 0 14px;
    transition: all 0.3s ease;
}

    .login-input:focus {
        border-color: #4caf50;
        box-shadow: 0 0 0 0.15rem rgba(76, 175, 80, 0.25);
    }

/* ================= Button (Ocean Theme Only) ================= */
.login-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;
}

    .login-theme-btn:hover {
        background: linear-gradient(90deg, #134E5E, #0B3037); /* hover gradient */
    }

/* ================= Validation ================= */
.text-warning {
    font-size: 13px;
}
