.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f6f9f8;
}

.register-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.register-header .logo {
    width: 80px;
    margin-bottom: 15px;
}

.register-header h2 {
    margin-bottom: 20px;
    color: #333;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.register-form label {
    font-size: 14px;
    color: #555;
}

.register-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.btn-register {
    background: linear-gradient(90deg, #00a86b, #007a55);
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}
.btn-register:hover {
    background: linear-gradient(90deg, #009e64, #006c4a);
}
