body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    background-color: #DCE4C9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.check__form {
    width: 200px;
    height: 150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #F5F5DC;
    padding: 20px;
    border-radius: 10px;
    color: #4A4947;
}

.check__form input {
    max-width: 130px;
    padding: 4px;
    border-radius: 8px;
    outline: none;
    border: 1px solid #B6A28E;
}

.check__form h2 {
    margin: 0;
    margin-bottom: 10px;
}

.check__user {
    max-width: 100px;
    width: 100%;
    padding: 4px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #B6A28E;
    background-color: #DCE4C9;
    margin-left: auto;
    color: #4A4947;
    cursor: pointer;
}

.input__wrapper {
    display: flex;
    justify-content: space-between;
}