﻿/*Dark mod*/
body.dark
.calbox {
    background-color: #89898935;
}

body.dark
input,
body.dark
.ful {
    background-color: #89898938;
    color: white;
}

body.dark
input::placeholder,
body.dark
.ful::placeholder {
    color: white;
}

/*Dark mod*/
.boxcall {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    gap: 20px;
}

.boxcall h1{
    font-size:4rem;
}

.calbox{
    display:flex;
    flex-direction:column;
    gap:10px;
    background-color:#e9e9e9b9;
    box-shadow:1px 1px 10px #0000007f;
    width:600px;
    padding:30px;
    font-size:2rem;
    border-radius:10px;
    transition:all 0.5s;
}

.calbox:hover {
    box-shadow: 2px 2px 20px #0000007f;
}

label {
    font-family: inherit;
}

input {
    width: 500px;
    height: 40px;
    border: none;
    background-color: #e9e9e9b9;
    border:solid 2px #0000004b;
    border-radius: 10px;
    font-family: inherit;
    padding: 10px;
    transition: all 0.5s;
}

    input::placeholder {
        font-family: inherit;
    }

    input:focus {
        border: solid 2px #003cff;
    }

.ful {
    width: 500px;
    height: 100px;
    border: none;
    background-color: #e9e9e9b9;
    border: solid 2px #0000004b;
    border-radius: 10px;
    font-family: inherit;
    padding: 10px;
    transition: all 0.5s;
    resize: none;
}

.ful:hover {
    border: solid 2px #003cff;
}

button {
    font-family: inherit;
    border: none;
    padding: 10px;
    border-radius: 10px;
    background-color: #003cff;
    color: var(--white);
    cursor: pointer;
    transition: all 0.5s;
    width: 100%;
}

button:hover {
    background-color: #002cbd;
}

@media (max-width:558px){
    .calbox{
        width:400px;
    }

    input,
    .ful {
        width: 340px;
    }
}