/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* Decorative top shape */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: #9ec3ca; /* light teal */
    border-bottom-right-radius: 100% 60%;
    border-bottom-left-radius: 100% 60%;
    z-index: -1;
}

/* Decorative bottom shape */
body::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: #b7e097; /* light green */
    border-top-left-radius: 100% 60%;
    border-top-right-radius: 100% 60%;
    z-index: -1;
}

.field {
    width: 100%;
    max-width: 81.397vw;
    text-align: center;

}

.field h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

/* Input styling */
.input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 12px;
    border: none;
    background: #ffa726; /* orange background */
    color: #333;
    font-size: 1rem;
}

.input::placeholder {
    color: #6e6e6e;
    opacity: 0.9;
}

/* Buttons container */
.buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Primary button */
.button {
    background: #ff7b72; /* coral pink */
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

.button:hover {
    opacity: 0.85;
}

/* Register link styled like a secondary button */
.buttons a {
    display: inline-block;
    padding: 10px;
    border-radius: 12px;
    border: 2px solid #ff7b72;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

.buttons a:hover {
    background: #ff7b72;
    color: #fff;
}