﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #fef5ef 0%, #ffffff 40%, #fef5ef 100%);

}




/* ===============================
   PAGE LAYOUT
================================ */
.main-content {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 36px 28px;
    box-shadow: 0 20px 60px rgba(249, 128, 19, 0.15), 0 0 1px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   HEADER
================================ */
.login-header {
    text-align: center;
    margin-bottom: 28px;
}

    .login-header img {
        width: 70px;
        margin-bottom: 12px;
    }

.login-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #f98013, #ff9f47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* ===============================
   INPUT CONTAINERS
================================ */
.input-container {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border-radius: 50px;
    padding: 14px 18px;
    border: 2px solid transparent;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

    .input-container:focus-within {
        background: #ffffff;
        border-color: #f98013;
        box-shadow: 0 0 0 4px rgba(249, 128, 19, 0.15);
        transform: translateY(-2px);
    }

.input-icon {
    font-size: 18px;
    color: #9ca3af;
    margin-right: 12px;
}

.input-container:focus-within .input-icon {
    color: #f98013;
}

.input-field {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

    .input-field::placeholder {
        color: #9ca3af;
    }

/* ===============================
   BUTTON
================================ */
.login-button {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, #f98013, #ff9f47);
    box-shadow: 0 12px 30px rgba(249, 128, 19, 0.35);
    transition: all 0.3s ease;
}

    .login-button:hover {
        transform: translateY(-2px);
    }

    .login-button:active {
        transform: translateY(1px);
        box-shadow: 0 6px 18px rgba(249, 128, 19, 0.35);
    }

/* ===============================
   ALERTS
================================ */
.alert {
    border-radius: 12px;
    font-size: 13px;
    padding: 10px;
}

/* ===============================
   STEP VISIBILITY
================================ */
.d-none {
    display: none !important;
}

/* ===============================
   OTP INPUT
================================ */
.input-field.text-center {
    text-align: center;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 480px) {
    .login-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .login-title {
        font-size: 24px;
    }
}


/* ===============================
   PASSWORD EYE TOGGLE
================================ */
/* ===============================
   PASSWORD EYE TOGGLE
================================ */
.password-container {
    position: relative;
}

.toggle-password {
    cursor: pointer;
    color: #9ca3af;
    margin-left: 10px;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}

    .toggle-password svg {
        width: 20px;
        height: 20px;
    }

    .toggle-password:hover {
        color: #f98013;
        transform: scale(1.1);
    }

.input-container:focus-within .toggle-password {
    color: #f98013;
}


