body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    align-content: center;
    height: 100vh;
    background-color: aliceblue;
}

.main-content {
    top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.main-content .container {
    width: 100%;
    max-width: 250px;
    padding: 20px 33px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(94, 120, 129, 0.8);

}


.login-content h3 {
    text-align: center;
    color: #333;
    margin-top: 0px;
    margin-bottom: 14px;
    font-size: 30px;
}

.login-details form .details {
    margin-bottom: 3px;
}


.login-details label {
    display: block;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    font-size: 20px;
}

.login-details input {
    width: 95%;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    margin-bottom: 10px;
    padding: 8px;
    transition: border 0.3s ease;

}

.login-details input:focus {
    border-color: #8ccbec;
}

button {
    background-color: #57a3ad;
    border: none;
    padding: 8px 15px;
    font-size: 17px;
    border-radius: 8px;
    color: white;

    width: 100%;
}

button:hover {
    background-color: #288c99;
    transform: scale(1.1);
    transition: transform 0.4s ease;
}