
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #181818;
    color:#888b88;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #222;
}

    header h1 {
        margin: 0;
        font-size: 1.5rem;
    }

        header h1 a {
            color: #ed70e8;
            text-decoration: none;
        }

            header h1 a spam {
                color: #ef79ea;
            }



    header nav a {
        color: #888b88;
        text-decoration: none;
        margin-left: 15px;
        
    }

        header nav a:hover {
            text-decoration: underline;
        }


    header .button-sign-up {
        text-decoration:none;
        display: inline-block;
        background-color: #914caf;
        color: #ffffff;
        padding: 8px 10px;
        border-radius: 12px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        transition: background-color 0.3s ease; 
    }


        header .button-sign-up:hover {
            background-color: #c47ee3;
            text-decoration:none;
        }



        .login-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

.login-box {
    background-color: #222;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
}

    .login-box h2 {
        margin: 0 0 20px;
        text-align: center;
        font-size: 1.8rem;
        color: #dfdadf;
    }



.login-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    margin-top: 20px;
}

    .login-box .input-group {
        position: relative;
        margin-bottom: 15px;
    }

    .login-box input {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        background-color: #333;
        color: #fff;
        font-size: 1rem;
       
    }



    .login-box .toggle-password {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #8d878d;
        font-size: 1.2rem;
    }


    .login-box input[type="submit"] {
        width: 100%;
        padding: 10px;
        background-color: #914caf;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 20px;
        margin-bottom: 10px;
        cursor:pointer;
    }

        .login-box input[type="submit"] :hover {
            background-color: #c47ee3;
        }

    .login-box a {
        display: block;
        text-align: center;
        color: #30cfeb;
        text-decoration: none;
        margin-top: 10px;
    }

    .login-box a:hover {
        text-decoration: underline;
    }



.checkbox-container {
    display: inline-flex; 
    align-items: center; 
    white-space: nowrap; 
    margin-bottom: 15px; 
    margin-top: 20px;
}

    .checkbox-container input[type="checkbox"] {
        margin: 0; 
        width: 16px; 
        height: 16px;
        accent-color: #30cfeb;
    }

    .checkbox-container label {
        margin: 0;
        padding-left: 8px; 
        font-size: 1rem; 
        line-height: 1; 
    }


    .error-message{

        color: #f15050;
        display: flex; /* !important; */
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 16px;
        margin-top: 8px;
        /* background-color: #5b5353; */
        padding: 8px;        
    }

    .material-icons {
        margin-right: 5px;
        font-size: 18px;
    }

  



footer {
    text-align: center;
    padding: 10px 20px;
    background-color: #222;
    position: relative;
    bottom: 0;
    width: 100%;
}
