﻿.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f6f9;
}

.register-box {
    padding: 30px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
    margin-bottom: 50px;
    border-top: 5px solid #113266; 
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

    .form-header h1 {
        margin: 0;
        font-size: 28px;
        font-weight: bold;
        color: #a61118;
    }

    .form-header p {
        font-size: 14px;
        color: #113266;
        margin: 10px 0 20px 0;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group input,
    .form-group select {
        padding: 10px;
        border: 1px solid #c79931;
        border-radius: 5px;
        width: 100%;
    }

    .form-group label {
        font-weight: bold;
        color: #113266;
    }

.btn-register {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #113266;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-register:hover {
        background-color: #a61118;
        color: #ffffff;
    }

.login-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #113266;
}

    .login-link a {
        color: #a61118;
        text-decoration: none;
    }

        .login-link a:hover {
            text-decoration: underline;
        }
