* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    background-color: whitesmoke;
}

.form-container {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.name {
    display: flex;
    gap: 10px;
}

input {
    width: 100%;
    font-size: 1em;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    outline: none;
}

input:focus {
    background-color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

input::placeholder {
    color: rgb(148, 163, 184);
}

button {
    width: 100%;
    background-color: #2563eb;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        transform 0.2s ease;
}

button:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}
