@import url("style.css");

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 360px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

h1 {
    margin: 0 0 1.5rem;
    text-align: left;
    font-size: 1.5rem;
}

h1.title{
    font-family: montserrat, Arial;
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    color: #0c2458;
}

.form-group {
    margin-bottom: 0rem;
}

label {
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem;
    border: 1px solid #cfd6dd;
    border-radius: 8px;
    font-size: 1rem;
}

input.box{
    display: inline;
    width: auto;
}

button {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-family: montserrat, Arial;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

button:hover {
    background: #1d4ed8;
}

p.warning{
    color: red;
    font-family: montserrat, Arial;
    font-weight: 600;
    font-size: 1rem;
}

button.disabled{
    background-color: #9ca3af;
    cursor: not-allowed;
}

.link{
    text-align: left;
    margin-top: 0rem;
    margin-left: 0rem;
    color: #2563eb;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
}