
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('background_photos/campus4.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    margin-bottom: 10px;
}

.logo-label2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-title {
    font-size: 2.5rem;
    margin: 10px 0;
}

.hero-subtitle {
    font-size: 1.2rem;
}

/* SIGNUP FORM */
.signup-section {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.signup-container {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.signup-container input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.signup-container button {
    width: 100%;
    padding: 12px;
    background-color: #e73d51ff;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.signup-container button:hover {
    background-color: #014f6eff;
}

.privacy-note {
    font-size: 0.85rem;
    margin-top: 10px;
    color: #666;
}
