/* Logo */
img {
    object-fit: cover; 
    
    display:flex;
    align-content:center;
    max-width: 336px; 
    border-radius: 8px;

    margin-bottom: 1.6rem;
}

label {
    margin-left: 1.2rem;
    font-size: 0.95rem;
}
input {
    border: none;

    padding: 0.9rem 1.2rem;
    margin-bottom: 1.4rem;
}


.submit-button {
    font-size: 1rem;
    width:100%;
    border-radius:999px;
    font-weight:600;
    padding:0.8rem;
    background: #ff914d;
}
.submit-button:hover {
    background: #ef6611;
    box-shadow: 0 6px 16px rgba(255, 119, 0, 0.3);
}

.microsoft-button {
    color:#3b3b3b;
    font-weight: 600;
    text-decoration: none;

    width: 100%;
    background: white;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0.6rem;
    padding: 0.7rem;
}

.login-inline-error{
    margin: auto;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffd5d5;
    color: #e83c3c;
    margin-bottom: 1.6rem;
    border-radius: 999px;
}