
/* General Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f9;
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    margin: 0;
}

.register-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    max-width: 600px;
    width: 100%;
}

h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 500;
}

.description {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Form Layout */
.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.input-group.full-width {
    margin-bottom: 20px;
}

/* Input Styling */
label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"] {
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fafafa;
    outline: none;
    transition: border 0.3s ease;
}

input:focus {
    border-color: #55aaff;
}

/* Terms and Checkbox */
.terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 25px;
    font-size: 13px;
    color: #666;
}

.terms input[type="checkbox"] {
    cursor: pointer;
}

.terms a {
    color: #888;
    text-decoration: underline;
}

/* The Orange Register Button */
.register-btn {
    margin-top: 30px;
    background-color: #55aaff;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.register-btn:hover {
    background-color: #2f669eff;
}

.login-link {
    font-size: 16px;
    color: #55aaff;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.login-link:hover {
    text-decoration: underline;
}