body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fb;
    height: 100%;
}

.page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 60px;
    padding: 20px;
    box-sizing: border-box;
}

.title-container {
    flex-shrink: 0;
    max-width: 320px;
}

.title-container h1 {
    font-size: 28px;
    line-height: 1.2;
    color: #1a1a1a;
    text-align: left;
}

.title-container h1 span {
    display: block;
    font-weight: 300;
    font-size: 20px;
    color: #555;
    margin-top: 8px;
}

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-width: 420px;
    width: 100%;
}

form label {
    display: block;
    margin-bottom: 16px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

form input,
form select {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

form input:focus,
form select:focus {
    border-color: #007bff;
    outline: none;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

p {
    color: red;
    font-size: 14px;
    margin-bottom: 16px;
}
