* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Georgia", sans-serif;
}

body {
    background-color: #13c9e9;
}

.container {
    background-color: #ffffff;
    width: 80vmin;
    max-width: 37.5em;
    padding: 3em 2.5em;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 0.62em;
    box-shadow: 0 1.2em 2.5em rgba(0, 21, 44, 0.18);
}

h2 {
    color: #0a0a0a;
    text-align: center;
    font-weight: 600;
    letter-spacing: 05px;
    margin-bottom: 1.3em;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1.8em;
}

label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
    color: #000;
}


input {
    position: relative;
    font-size: 1.2em;
    width: 100%;
    padding: 0.5em;
    border-radius: 0.2em;
    border: 1.5px solid #43405c;
    color: #43405c;
    outline: none;
}

input:focus {
    border-color: #0075ff;
}
