@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('./4931029.jpg');
    background-size: cover;
    background-position: center;
}

.container {
    width: 420px;
    background-color: rgba(73, 73, 73, 0.151);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    color: white;
    padding: 30px 40px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}


.container h1 {
    color: #555555;
    font-size: 36px;
    text-align: center;
    text-shadow: 1px 3px 0 #9696965d, 1px 5px 5px #aba8a8;
}

.input-box {
    color: #555555;
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 2px solid rgba(66, 66, 66, 0.2);
    border-radius: 40px;
    outline: none;
    font-size: 16px;
    color: #555555;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: #555555;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.remember-forgot {
    color: #555555;
    display: flex;
    justify-content: space-between;
    margin: -15px 0 15px;
}

.remember-forgot label input {
    accent-color: #fff;
    margin-right: 5px;
}

.remember-forgot a {
    text-decoration: none;
    color: #555555; 
}

.remember-forgot a:hover{
    text-decoration: underline;
}

.login {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #202020;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.login:hover {
    box-shadow: rgba(0, 0, 0, 0.63) 0px 22px 50px 4px;
}

.register-link {
    color: #555555;
    text-align: center;
    margin-top: 10px;
}

.register-link a {
    text-decoration: underline;
    color: #555555;
}

#icon {
    cursor: pointer;
    font-size: 16px;
}

.error {
    border: 2px solid red;
    font-size: 14px;
}

.error-message {
    color:  #ff5252;
    font-size: 14px;
    margin-top: 5px;
}

.success-message {
    color: #00c853;
    font-size: 14px;
    margin-top: 5px;
}