* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.center-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a8e6cf 0%, #7dd3c0 100%);
    padding: 20px;
}

.login-wrapper {
    background: #f5f5f5;
    border-radius: 50px;
    padding: 60px 80px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.brand {
    text-align: center;
    margin-bottom: 50px;
}

.lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #5b4cdb;
    border-radius: 50%;
    margin-bottom: 15px;
}

.lock i {
    color: white;
    font-size: 28px;
}

.brand h2 {
    color: #5b4cdb;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.brand p {
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.card-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: stretch;
}

.login-card {
    background: linear-gradient(180deg, #7d6ffa 0%, #9f96f1 55%, #5b4cdb 55%, #5b4cdb 100%);
    border-radius: 30px;
    padding: 0;
    flex: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 25px rgba(91, 76, 219, 0.15);
    overflow: hidden;
    border-radius: 0px 80px 0px 80px;
}

.card-img {
    width: 100%;
    height: auto;
    padding: 40px 30px 30px 30px;
    object-fit: contain;
    max-height: 280px;
    border-radius: 50%;
}

.btn {
    background: white;
    color: #5b4cdb;
    text-decoration: none;
    padding: 14px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    margin: 30px 0 40px 0;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .login-wrapper {
        padding: 50px 60px;
    }
    
    .card-container {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .login-wrapper {
        padding: 40px 30px;
        border-radius: 35px;
    }
    
    .brand h2 {
        font-size: 32px;
    }
    
    .brand p {
        font-size: 14px;
    }
    
    .lock {
        width: 55px;
        height: 55px;
    }
    
    .lock i {
        font-size: 24px;
    }
    
    .card-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .login-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .center-bg {
        padding: 15px;
    }
    
    .login-wrapper {
        padding: 30px 20px;
        border-radius: 25px;
    }
    
    .brand {
        margin-bottom: 35px;
    }
    
    .brand h2 {
        font-size: 28px;
    }
    
    .lock {
        width: 50px;
        height: 50px;
    }
    
    .lock i {
        font-size: 22px;
    }
    
    .card-img {
        padding: 30px 20px 20px 20px;
        max-height: 240px;
    }
    
    .btn {
        padding: 12px 35px;
        font-size: 14px;
        margin: 25px 0 35px 0;
    }
}

@media (max-width: 360px) {
    .login-wrapper {
        padding: 25px 15px;
    }
    
    .brand h2 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 30px;
        font-size: 13px;
    }
}