.contact-1 {
    background-color: #fff0f5;
    padding: 60px 0;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.register-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.register-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-header h2 {
    color: #ff789b;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.register-header p {
    color: #666;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #555;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 15px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: #ff789b;
    outline: none;
}

.btn-register {
    width: 100%;
    height: 45px;
    background: #ff789b;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-register:hover {
    background: #ff6488;
}

.login-link {
    text-align: center;
    margin-top: 25px;
    color: #666;
    font-size: 14px;
}

.login-link a {
    color: #ff789b;
    text-decoration: none;
    font-weight: 500;
    margin-top: 5px;
    display: inline-block;
}

.login-link a:hover {
    text-decoration: underline;
}

.alert {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background-color: #fff2f2;
    border: 1px solid #ffebeb;
    color: #ff4444;
}

.alert-success {
    background-color: #f2fff2;
    border: 1px solid #ebffeb;
    color: #44b544;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}
