﻿body {
    margin: 0;
    padding: 0;
    height: 100vh;
}
.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-card {
    width: 450px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    font-family: Segoe UI;
}

.form-title {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.form-row {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

    .form-row label {
        font-weight: 600;
        margin-bottom: 5px;
    }

.form-control {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

    .form-control:focus {
        border-color: #007bff;
        outline: none;
    }

.message-box {
    height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

    .btn-submit:hover {
        background: #218838;
    }

.note {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.required {
    color: red;
}

