﻿.contact-container {
    padding: 50px;
    max-height: 600px;
    max-width: 500px;
    margin: 50px auto;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(248, 25, 107, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-container:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .contact-container h1 {
        font-size: 2.0rem;
        color: #333;
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-container .form-group {
        margin-bottom: 20px;
    }

    .contact-container .form-control {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 10px;
        transition: border 0.3s ease;
    }

        .contact-container .form-control:focus {
            border-color: #f8196b;
            box-shadow: 0 0 8px rgba(248, 25, 107, 0.3);
        }

    .contact-container .btn {
        width: 100%;
        padding: 12px;
        background-color: #A3BBF2;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

        .contact-container .btn:hover {
            background-color: #593f5f;
            transform: scale(1.05);
        }

        .contact-container .btn:active {
            transform: scale(0.98);
        }

#message {
    resize: none;
    max-width: 100%;
    max-height: 200px;
    min-height: 100px;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 30px;
        margin: 30px 15px;
    }

        .contact-container h1 {
            font-size: 24px;
        }

        .contact-container .btn {
            font-size: 16px;
        }
}