/******** Global Font **********************/

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


body {
    background: url('../images/default-bg.png') no-repeat center center;
    background-size: cover;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-main);
    color: var(--text-main);
}


/* ----------------------------------------------------------
   LAYOUT
---------------------------------------------------------- */


.auth-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.auth-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Centered Container */
/* Default (Login, small forms) */
.auth-card {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    background: #fff;
    padding: 30px;
}

    .auth-card.small {
        max-width: 420px;
    }

    .auth-card.medium {
        max-width: 650px;
    }

    .auth-card.large {
        max-width: 900px;
    }

    .auth-card.full {
        max-width: 1100px;
    }

/* Mobile fix */
@media (max-width: 768px) {
    .auth-card,
    .auth-card.medium,
    .auth-card.large,
    .auth-card.full {
        max-width: 100%;
        padding: 20px;
    }
}


.option-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

    .option-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

.icon-box {
    font-size: 40px;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
}

.register-section {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.form-label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #334155 !important;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 8px;
}

.btn {
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
}

.btn-primary {
    background: #0065a9;
    border: none;
}

    .btn-primary:hover {
        background: #00518a;
    }

.input-group .btn {
    border-radius: 0 10px 10px 0;
}

a {
    text-decoration: none;
}
