/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f9f8;
    color: #333;
}

.container {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.left-section {
    flex: 1;
    padding: 20px;
    max-width: 400px;
}

.left-section .icon {
    width: 50px;
    height: 50px;
    background-color: #ddeedd;
    border-radius: 50%;
    margin-bottom: 20px;
}

.left-section h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.left-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 400px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-bottom: 8px;
}

input, select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input::placeholder {
    color: #bbb;
}

.btn {
    width: 100%;
    background: #3bbd91;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background: #32a67f;
}

.terms {
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
}

.terms a {
    color: #3bbd91;
    text-decoration: none;
}
