
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(120deg, #f0f2f5, #d9e2ec);
    margin: 0;
    padding: 0;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.form-container {
    text-align: center;
}


h1 {
    color: #222;
    font-size: 32px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}


form {
    background: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    width: 400px;
    text-align: left;
}


label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* --- Kirjuta sisse --- */
input[type="text"],
input[type="date"],
input[type="number"],
select {
    width: 100%;
    padding: 12px 15px;
    margin: 0;
    border: 2px solid #ccc;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

input:focus,
select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 8px rgba(255,102,0,0.5);
}

/* --- Nuppud --- */
button {
    background: linear-gradient(45deg, #ff6600, #ff9933);
    color: #fff;
    padding: 12px 25px;
    margin-top: 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    width: 100%;
}

button:hover {
    background: linear-gradient(45deg, #e65500, #ffcc66);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
