@font-face {
    font-family: 'Sender';
    src: url(./assets/fonts/Sender-Regular.ttf);
    font-weight: 700;
}
@font-face {
    font-family: 'GetSend Sans';
    src: url(./assets/fonts/GetSendSans-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'GetSend Sans';
    src: url(./assets/fonts/GetSendSans-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'GetSend Sans';
    src: url(./assets/fonts/GetSendSans-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'GetSend Sans';
    src: url(./assets/fonts/GetSendSans-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'GetSend Sans Mono';
    src: url(./assets/fonts/GetSendSansMono-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'GetSend Sans Mono';
    src: url(./assets/fonts/GetSendSansMono-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'GetSend Sans Mono';
    src: url(./assets/fonts/GetSendSansMono-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'GetSend Sans Mono';
    src: url(./assets/fonts/GetSendSansMono-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

* {
    font-family: 'GetSend Sans', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #00595d;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
}

/* Typography */
h1 {
    font-family: 'Sender', sans-serif;
    color: #f1e0ce;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

p {
    color: #f1e0ce;
}

a {
    color: #f1e0ce;
}

/* Form Container */
form {
    background: #f1e0ce;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 500px;
}

label {
    font-family: 'Sender', sans-serif;
    color: #00595d;
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

input::placeholder,
textarea::placeholder {
    color: #00595d;
}

input[type="email"],
input[type="text"],
textarea {
    font-family: 'GetSend Sans', sans-serif;
    color: #00595d;
    font-size: 1rem;
    background: #ffffff;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #00595d;
    border-radius: 6px;
    margin-top: 5px;
    transition: border 0.2s ease-in-out;
}

input:hover,
textarea:hover {
    background-color: #f8f0e7;
}

input:focus,
textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #00595d;
}

textarea {
    /* font-family: 'GetSend Sans Mono', monospace; */
    resize: vertical;
    min-height: 100px;
}

/* Button */
button {
    font-family: 'Sender', sans-serif;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    background-color: #00595d;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    width: 100%;
}

button:hover {
    background-color: #307473;
}

#status {
    color: #ff4040;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    form {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    button {
        font-size: 0.95rem;
        padding: 10px 16px;
    }
}
