body {
    background: aliceblue;
    max-width: 540px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 1s ease-in-out;
}

.form-container {
    min-height: 100vh;
    max-width: 540px;
    margin-top: -10%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #eee;
}

.form-container form {
    padding: 20px;
    margin-top: -30%;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    background: #fff;
    text-align: center;
    width: 400px;
}

.form-container form h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #333;
}

.form-container form input {
    width: 80%;
    border: 1px solid rgba(238, 195, 195, 0.5);
    padding: 10px 15px;
    font-size: 17px;
    margin: 8px 0;
    background: #eee;
}

.form-container form .form-btn {
    background: #fcaf09;
    color: #fff;
    text-transform: capitalize;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
}

.form-container form .form-btn:hover {
    background: #06a4ff;
    color: #fff;
}

.form-container form p {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
}

.form-container form p a {
    color: crimson;
}

.form-container form .error-msg {
    margin: 10px 0;
    display: block;
    background: crimson;
    color: #fff;
    border-radius: 5px;
    font-size: 20px;
}

/* Styles for the toggle button */
.toggle-password {
    display: inline-block;
    width: 8.5%;
    vertical-align: middle;
    margin-left: -9.5%;
}