﻿* {
    margin: 0;
    padding: 0;
}

body {
    background: url('/background.jpeg') center center no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: grid;
    align-items: center;
    justify-items: center;
}

.contact-us {
    background: #f8f4e5;
    padding: 50px 100px;
    border: 2px solid rgba(0, 0, 0, 1);
    box-shadow: 15px 15px 1px #ffa580, 15px 15px 1px 2px rgba(0, 0, 0, 1);
}

input {
    display: block;
    width: 100%;
    font-size: 14pt;
    line-height: 28pt;
    font-family: 'Fjalla One', sans-serif;
    margin-bottom: 28pt;
    border: none;
    border-bottom: 5px solid rgba(0, 0, 0, 1);
    background: #f8f4e5;
    min-width: 250px;
    padding-left: 5px;
    outline: none;
    color: rgba(0, 0, 0, 1);
}

    input:focus {
        border-bottom: 5px solid #ffa580;
    }

button {
    display: block;
    margin: 0 auto;
    line-height: 28pt;
    padding: 0 20px;
    background: #ffa580;
    letter-spacing: 2px;
    transition: 0.2s all ease-in-out;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 3px 3px 1px 1px #95a4ff, 3px 3px 1px 2px rgba(0, 0, 0, 1);
}

    button:hover {
        background: rgba(0, 0, 0, 1);
        color: white;
        border: 1px solid rgba(0, 0, 0, 1);
    }

::selection {
    background: #ffc8ff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    border-bottom: 5px solid #95a4ff;
    -webkit-text-fill-color: #2A293E;
    -webkit-box-shadow: 0 0 0px 1000px #f8f4e5 inset;
    transition: background-color 5000s ease-in-out 0s;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 10px;
    font-family: 'Fjalla One', sans-serif;
    width: 100%;
}

footer a {
    color: inherit;
    text-decoration: none;
    margin: 0 5px;
}

.validation-message {
    padding: 10px;
    border-radius: 5px;
    color: white;
    background-color: red; /* Hata rengi */
    border: 1px solid darkred; /* Kenar rengi */
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.text-danger {
    color: red; /* Hata mesajı için kırmızı renk */
    font-weight: bold;
}
