@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #f9f9f9;
    background-image: url('/assets/images/bg.svg');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: 25%;
    color: #575757;
    font-family: 'Poppins',sans-serif;
    font-size: 14px;
    margin: 0;
}
#page {
    align-items: center;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    width: 100%;
}
.contact {
    background: #fff;
    border-radius: 0;
    box-shadow: 5px 7px 26px -14px rgb(165 165 165);
    margin: 5px;
    overflow: auto;
    position: relative;
    display: flex;
    width: 500px;
    max-width: 100%;
}

.col {
    max-width: 100%;
    padding: 20px;
}
.logo, .logo img {
    max-width: 100%;
    max-height: 60px;
}

input, textarea {
    border: none;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 5px;
    padding: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    resize: vertical;
}

textarea {
    font-size: 16px;
    min-height: 100px;
    font-family: 'Poppins',sans-serif;
}
textarea::placeholder {
    font-size: 16px;
    font-family: 'Poppins',sans-serif;
}
input:focus, textarea:focus {
    outline: none;
    border-bottom: 1px solid #666;
}
label {
    bottom: 5px;
}

button {
    background-color: #3498ff;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    width: 100%;
}
button:hover {
    background-color: #2a7de1;
}

.error {
    color: #ff0000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}