/* Page Layout */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Content */
.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 2rem;
    text-align: center;
}

.register-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

/* Typography */
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.page-description {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.page-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Form Styles */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    color: #7f8c8d;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(189, 195, 199, 0.5);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    color: #2c3e50;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
}

.input-wrapper input::placeholder {
    color: #bdc3c7;
    font-weight: 400;
}

/* Register Button */
.register-btn {
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.register-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.register-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
	
	.navbar {
        padding: 15px 0px;
        flex-direction: column;
        gap: 15px;
    }
	
    .register-container {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle,
    .page-description {
        font-size: 0.9rem;
    }
    
    .input-wrapper input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .input-icon {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .register-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}