
body {
    font-family: 'Arial', sans-serif;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.login-window {
    height: 100%;
    width: 100vw;
    max-width: 430px;
    padding: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;

    box-sizing: border-box;
}

.login-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar p {
    font-family: 'Arial', sans-serif;
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: black;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.auth {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.login {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
}

input {

    width: 100%;
    border-radius: 0px;
    border: 0px solid #00000000;
    background-color: #00000000;
    font-size: 16px;
    padding: 8px;
    outline: none;
    box-shadow: none;

    -webkit-box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}


.password {
    display: flex;
    align-items: center;
    width: 100%;

    border: 1px solid #ccc;
    border-radius: 10px;
}




.toggle-password {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: none;
    border: none;

    cursor: pointer;
    padding: 0 8px;
    min-width: 70px;
    -webkit-tap-highlight-color: transparent;

}

.toggle-password p {
    color: #2575fc;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.toggle-password p:hover  {
    color: #2575fc;
}

.submit {
    width: 100%;
}

.submit button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background-color: #2575fc;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
}

.submit button:hover {
    background-color: #0a61f8;
}

.bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
}


.bottom-text {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #555;

}

.bottom-text a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
}

.bottom-text a:hover {
    text-decoration: underline;
}



.notification-box {
    display: flex;
    justify-content: center;
    width: 100%;
}


.notification {
    margin: 0;
    padding: 0px;
    border-radius: 30px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    width: auto;
    max-width: 100%;;
}



.notification.error {
    color: red;
}

.notification.warning {

    color: red;
}

.notification.success {
    color: green;
}

