﻿
body {
    background: linear-gradient(135deg, #d6ecff, #d0f6e9);
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
}

.form-container {
    border-radius: 12px;
    background-color: white;
}

.form-header {
    border-radius: 0px 0px 8px 8px;
/*    background-color: #1e2e51;*/
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 8px;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-size: 14px;
}

.form-control {
    color: #2d3748;
    font-size: 14px;
    border-radius: 6px;
}

    .form-control:focus {
        outline: 1.5px solid #3b82f6;
        box-shadow: none;
    }

hr {
    border: 1px solid #aaaaaa;
}

.btn-submit {
    background-color: #2c3e50;
    border-color: #2c3e50;
    font-weight: 600;
    color: white;
}

    .btn-submit:hover {
        background-color: #1a252f;
        color: white;
    }

.link {
    text-decoration: none;
    font-size: 14px;
}
