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

body {
    background: #16a34a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    gap: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
}

h1 {
    color: white;
    font-size: 2rem;
}

p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.btn {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 16px 24px;
    background: white;
    color: #16a34a;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn:hover {
    background: #f0fdf4;
}

.link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    margin-top: 10px;
}

.link:hover {
    color: white;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.form input,
.form textarea {
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.form textarea {
    resize: vertical;
}

.msg {
    display: none;
    background: white;
    color: #16a34a;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
}
