body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    background-color: #0D1B2A;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #1B263B;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.container img {
    /* width: 410px; */
    height: 110px;
    /* object-fit: cover; */
    margin-top: 15px;
    margin-bottom: 25px;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #415A77;
    border-radius: 5px;
    font-size: 16px;
    background-color: #778DA9;
    color: white;
}

input[type="submit"] {
    background-color: #415A77;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background-color: #0D1B2A;
}

.psw {
    margin-top: 10px;
    font-size: 14px;
}

.psw a {
    color: #ffffffac;
    text-decoration: none;
}

.psw a:hover {
    text-decoration: underline;
}

input::placeholder {
    color: #ffffffac;
    opacity: 1;
}
