body {
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0d1f2e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-container {
    width: 90%;
    max-width: 420px;
    padding: 40px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e3e7ed;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
    color: #00b8a9;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    opacity: 0.85;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #d9dde3;
    background: #ffffff;
    color: #0d1f2e;
    font-size: 15px;
}

input:focus {
    border-color: #00b8a9;
    outline: none;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #00b8a9;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s ease;
}

button:hover {
    background: #009e92;
}

a {
    color: #00b8a9;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 15px;
    opacity: 0.8;
}

a:hover {
    opacity: 1;
}
