* {
    font-family: "Poppins", sans-serif;
}

body {
    height: 100dvh;
}

.login-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #132030;
}

.login-title img {
    max-width: 150px;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.login-input-group {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 5px;
}

.login-input-group input {
    width: 100%;
    padding: 5px 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    outline: none;
}

.login-input-group input:focus {
    border: 2px solid #1e558b;
}

.login-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.login-button button {
    width: 100%;
    max-width: 200px;
    padding: 10px 20px;
    border: 2px solid #1e558b;
    border-radius: 10px;
    background-color: #1e558b;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button button:hover {
    background-color: #fff;
    color: #1e558b;
}

.password-label {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.password-label button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    border: none;
    outline: none;
    color: #1e558b;
}