footer, nav, .footer-wave, .cursor {
    display: none;
}

body {
    overflow: hidden;
}

.login-container {
    margin-top: -4rem!important;
    background-color: black;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-login img {
    width: 180px;
    margin-bottom: 20px;
}

form {
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #FFD700;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    background: black;
    color: #FFD700;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #FFCC00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    color: #FFD700;
    background: #000;
}

.btn-login {
    width: 100%;
    background: #FFD700;
    color: #000;
    font-size: 18px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-login:hover {
    background: #FFCC00;
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.6);
}