@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap");

:root {
    --bs-body-bg: #f2f7ff;
    --bs-body-color: #607080;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url(../../static/images/bg_login.png);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    background-size: cover;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    overflow: hidden;
    position: relative;
}

/* Login container */
.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.05);
}

/* Title & subtitle */
.auth-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #25396f;
    margin: 10px 0;
}

.auth-subtitle {
    text-align: center;
    font-size: 14px;
    color: #a8aebb;
    margin-bottom: 30px;
}

/* Input fields */
.form-input {
    width: 100%;
    padding: 12px 16px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

/* Checkbox */
.form-check {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.form-check label {
    margin-left: 8px;
    font-size: 14px;
    color: #555;
}

/* Button */
.btn {
    background-color: #39a5ca;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.btn:hover {
    background-color: #2f90b1;
}

/* Footer link area */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 2rem;
}

.fs-4 {
    font-size: 1rem;
}

.font-bold {
    font-weight: bold;
}

.text-gray-600 {
    color: #666666;
}

a {
    color: #39a5ca;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .center {
        width: 90%;
        padding: 20px 15px;
        transform: translate(-50%, -50%);
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-subtitle {
        font-size: 13px;
    }

    .btn {
        font-size: 15px;
        padding: 12px;
    }
}
