* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #eaf4e6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

#message-alert {
    position: absolute;
    top: 0;
    background: red;
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 500px;
}

.contact-form h2 {
    margin-bottom: 15px;
}

.input-group {
    margin-bottom: 15px;
    /* font-weight: 100; */
}

.input-group label {
    font-weight: 100;
    font-size: 12px;
    color: hsl(186, 15%, 59%);
}

.user-name {
    display: flex;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    height: 100px;
    resize: vertical;
}


.half-width {
    display: inline-block;
    width: 48%;
}

.half-width label {
    font-weight: 100;
    font-size: 12px;
    color: hsl(186, 15%, 59%);
}

.half-width:first-child {
    margin-right: 4%;
}

.radio-group {
    display: flex;
    justify-content: space-between;
    
}

.radio-btns {
    display: flex;
    flex-direction: column;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    /* border-radius: 5px; */
}

.radio-group label {
    width: 48%;
    font-size: 12px;
    border: 1px solid hsl(186, 15%, 59%);
    padding: 8px 10px;
    border-radius: 5px;
}

.options {
    width: 30px;
    /* font-weight: 100; */

}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin: ; */
}

.ckb {
    width: 10%;
}

.ckb-lable {
    font-size: 12px;
    display: flex;
    align-items: center;
    margin: 0;
    font-weight: 100;
    color:hsl(186, 15%, 59%) ;
}

button {
    width: 100%;
    background-color:  hsl(169, 82%, 27%);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #085c3b;
}
