@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f0f2f5;
    
    min-height: 100vh;
}

.registration-container {
    background: #ffffff;
    margin: 0 auto;
    max-width: 1500px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-icon {
    font-size: 3rem;
    color: #00acee;
    margin-bottom: 10px;
}

.form-header h1 {
    font-size: 28px;
    color: #1c1e21;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-header p {
    color: #606770;
    font-size: 14px;
}

/* Grid System */
.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.full-width {
    grid-column: span 2;
}

label {
    font-size: 13px;
    font-weight: 600;
    color: #4b4f56;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

label i {
    color: #00acee;
    font-size: 14px;
}

.required {
    color: #d9534f;
}

input, select, textarea {
    padding: 12px 15px;
    border: 1.5px solid #dddfe2;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #00acee;
    box-shadow: 0 0 0 3px rgba(0, 172, 238, 0.1);
    background: #fff;
}

/* Checkbox Styling */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    margin: 20px 0;
    justify-content: center;
}

.checkbox-container a {
    color: #00acee;
    text-decoration: none;
    font-weight: 600;
}

/* Button Styling */
.form-footer {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: #00acee;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 172, 238, 0.3);
}

.submit-btn:hover {
    background: #008fca;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 172, 238, 0.4);
}

.note {
    font-size: 12px;
    color: #90949c;
    margin-top: 20px;
    line-height: 1.5;
}


/* Responsive */
@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .full-width {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .registration-container {
        padding: 20px;
    }
}                                                       
