body{
    padding: 0;
    margin: 0;
    background-color: #dee9e3;
    font-family: Arial, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.login-wrap{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.login-card{
    background-color: white;
    border-radius: 10px;
    padding: 30px 25px;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-brand{
    background-color: #0f3d2e;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.login-brand .brand-title{
    color: white;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 1px;
}

.login-brand .brand-subtitle{
    color: white;
    opacity: 0.7;
    font-size: 12px;
}

.login-alert{
    background-color: rgba(220, 53, 69, 0.12);
    color: rgb(220, 53, 69);
    font-size: 13px;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.login-form{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.login-label{
    font-size: 12px;
    opacity: 0.6;
    margin-top: 10px;
}

.login-input{
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    border: 2px solid whitesmoke;
    border-radius: 8px;
    font-size: 15px;
    background-color: whitesmoke;
    transition: border-color 0.2s;
}

.login-input:focus{
    outline: none;
    border-color: #0f3d2e;
    background-color: white;
}

.login-button{
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 25px;
    background-color: #0f3d2e;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: transform 0.1s ease;
}

.login-button:active{
    transform: scale(0.97);
}
