* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(243, 243, 243);
    color:  rgb(43, 235, 209);
}

a {
    margin-bottom: 10px;
    font-size: 20px;
    color: rgb(2, 49, 87);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}



.container {
    width: clamp(400px, 50%,20%);
    background-color:  rgb(2, 49, 87);
    font-size: min(20px, 5vw);
    padding: 20px;
}

.container h2 {
    text-align: center;
}

.form-container {

}

form {

}

.form-container label {
    margin-bottom: 5px;
}

.form-container input, .form-container select {
    margin-bottom: 10px;
    width: 100%;
    height: 40px;
    outline: none;
    padding-left: 7px;
}

.form-container input:focus, .form-container select:focus {
    border: solid rgb(40, 125, 153) 2px;
}

form > .button-container {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 10px;
    width: clamp(100px, 50vw, 240px);
    margin-top: 5px;
    margin-bottom: 10px;
}

form > .button-container > p {
    width: min(100px, 25vw);
    border: solid 1px;
    border-radius: 15px;
    text-align: center;
    padding: 5px;
}

form label {
    display: block;
}

.button-container > p:hover {
    cursor: pointer;
}

.button-container > p:first-child:focus {
    background-color: green;
    color: white;
    border: solid 2px  rgb(43, 235, 209);
}

.button-container > p:last-child:focus {
    background-color: red;
    color: white;
    border: solid 2px  rgb(43, 235, 209);
}

input[type='submit'] {
    width: 40%;
    height: 40px;
    margin: 0 auto;
    margin-top: 20px;
    background-color: rgb(43, 235, 209);
    color: rgb(2, 49, 87);
    border: none;
    font-weight: bold;
}