﻿/* Style for login screen */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', 'Poppins', Arial, sans-serif;
    background-color: #f3f4f6;
}

.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    position: relative;
    top: -50px;
}

    .login-box h2 {
        margin-bottom: 1.5rem;
        font-weight: bold;
        color: #333333;
    }

.form-control {
    border-radius: 0.375rem;
}

.btn-primary {
    width: 100%;
    font-weight: bold;
}

.form-text {
    text-align: center;
}

/* Override height for select elements */
select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
}

    /* Set grey color for select options */
    select.form-control:not([size]):not([multiple]) option {
        color: grey;
    }

/* Custom arrow for select elements */
select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z" fill="gray"/></svg>') no-repeat right 0.75rem center/1.5rem 1.5rem;
    padding-right: 2.5rem;
}