* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #9A0036;
    background-image: url('../images/background-logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
    bottom: 12vh;
}

.logo-container {
    margin-bottom: 40px;
    text-align: center;
}

.logo-container img {
    height: auto;
    max-width: 400px;
}

.login-box {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 400px;
    max-width: 90%;
    text-align: center;
    position: relative;
}

.login-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #9A0036, #C41E3A, #9A0036);
    border-radius: 17px;
    z-index: -1;
}

.login-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

.login-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.4;
}


.wave-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../images/wave.gif'); */
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        margin-bottom: 30px;
    }

    .logo-container img {
        max-width: 350px;
    }

    .login-box {
        width: 350px;
        padding: 30px 25px;
        margin: 20px;
    }

    .login-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        max-width: 290px;
    }

    .login-box {
        width: 300px;
        padding: 25px 20px;
    }

    .login-title {
        font-size: 22px;
    }

}

