﻿.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-card {
    background: #121218;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #2d2d39;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
    text-align: center;
    color: #fff;
}

.logo {
    color: #00ffa3;
    font-size: 32px;
    margin-bottom: 15px;
    margin-right: 40px;
}

.title {
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: 700;
}

.subtitle {
    color: #8e8e93;
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group1 {
    text-align: left;
    margin-bottom: 20px;
}

    .input-group1 label {
        display: block;
        color: #00ffa3;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 8px;
        text-transform: uppercase;
        display: block !important;
    }

    .input-group1 input {
        width: 100%;
        background: #1c1c24;
        border: 1px solid #2d2d39;
        padding: 14px 15px;
        border-radius: 10px;
        color: #fff;
        box-sizing: border-box;
        transition: 0.3s;
    }

        .input-group1 input:focus {
            border-color: #00ffa3;
            outline: none;
            background: #23232d;
        }

.password-wrapper {
    position: relative;
}

.show-pass {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e8e93;
    cursor: pointer;
}

.action-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 25px;
    align-items: center;
}

.forgot-link {
    color: #8e8e93;
    text-decoration: none;
}

.btn-signin {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #00ffa3 0%, #00d1ff 100%);
    color: #000;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.separator {
    margin: 25px 0;
    color: #48484a;
    font-size: 12px;
    display: flex;
    align-items: center;
}

    .separator::before, .separator::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #2d2d39;
        margin: 0 10px;
    }

.btn-alt {
    width: 100%;
    padding: 12px;
    background: #1c1c24;
    border: 1px solid #2d2d39;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-alt:hover {
        background: #2d2d39;
    }

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    color: #48484a;
    cursor: pointer;
}

.footer-text a {
    color: #00ffa3;
    text-decoration: none;
    font-weight: 600;
}

.login-btn {
    font-size: 17px;
    cursor: pointer;
    font-weight: 500;
    color: #cbd5e1;
    transition: 0.3s;
    white-space: nowrap;
}