/* General Styles */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;600&display=swap");



.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Glassmorphism Effect */
.glassmorphism {
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

body {
    margin: 0;
    font-family: "Instrument Sans", sans-serif;
    background: linear-gradient(135deg, #FAF7FF, #9270C4);
    color: #ffffff;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 10px 20px;
}

.nav-logo img {
    height: 50px; 
    width: auto;
}

.nav-title {
    font-size: 20px;
    font-weight: bold;
    font-family: "Instrument Sans", sans-serif;
    color: #41118D; 
}
/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #41118D;
    color: #ffffff;
    font-family: "Instrument Sans", sans-serif;

}

.btn-primary:hover {
    background: #7c3aed;
}

.btn-secondary {
    background: #475569;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #334155;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-family: "Instrument Sans", sans-serif;
    margin-bottom: 1.5rem;
    color: #41118D;
}

/* Profile Section */
.profile-section {
    margin-top: 6rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #475569;
    background: #ffffff;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b5cf6;
}

.form-group input[readonly] {
    background: #ffffff; 
    cursor: not-allowed; 
}

input:invalid {
    border-color: #ff0000; 
}

.profile-section {
    background: #FAF7FF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 600px;
}

.profile-section .section-title {
    font-size: 28px;
    color: #4a148c;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 16px;
    color: #4a148c;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #4a148c;
    border-radius: 5px;
    background: #fff;
    color: #4a148c;
}

.form-group input:focus, .form-group select:focus {
    border-color: #4a148c;
    outline: none;
}

.btn-primary {
    background-color: #4a148c;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

.btn-primary:hover {
    background-color: #5e18a3;
}

.btn-secondary {
    background-color: transparent;
    color: #4a148c;
    padding: 10px 20px;
    border: 1px solid #4a148c;
    border-radius: 5px;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #ECE6FF;
}

.logo {
    display: block; 
    margin: 0 auto; 
    max-width: 300px; 
    margin-bottom: 20px;
}
