* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Use the background image with a dark overlay */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-card img {
    max-width: 200px;
    margin: 0 auto 20px;
    display: block;
}

.login-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.login-card p {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6e8efb;
    background: #fff;
    box-shadow: 0 0 10px rgba(110, 142, 251, 0.3);
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: #6e8efb;
    background: #fff;
    padding: 0 5px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #6e8efb, #a777e3);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(45deg, #a777e3, #6e8efb);
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
}

.mozo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    background: #f1f3f5;
    transition: all 0.3s ease;
}

.mozo-section:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.mozo-section .icon {
    background: #6e8efb;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.mozo-section .icon i {
    font-size: 24px;
    color: white;
}

.mozo-section .text h4 {
    font-size: 16px;
    color: #6e8efb;
    margin: 0;
}

.mozo-section .text p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}

.social-icons a {
    color: #666;
    font-size: 20px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #6e8efb;
}

@media (max-width: 768px) {
    .login-card {
        padding: 20px;
    }

    .auth-wrapper {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .login-card img {
        max-width: 150px;
    }

    .login-card h3 {
        font-size: 20px;
    }

    .mozo-section .icon {
        width: 40px;
        height: 40px;
    }

    .mozo-section .icon i {
        font-size: 20px;
    }

    .mozo-section .text h4 {
        font-size: 14px;
    }

    .mozo-section .text p {
        font-size: 10px;
    }
}