.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon-wrap .input-icon {
    position: absolute;
    left: 12px;
    color: #888;
    font-size: 1.1em;
    pointer-events: none;
    z-index: 2;
}
.input-icon-wrap input,
.input-icon-wrap select {
    padding-left: 38px !important;
    width: 100%;
    box-sizing: border-box;
}
/* Main style for Alumni Registration Portal */
body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
}
header {
    background: #fff;
    padding: 20px 0 10px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}
.header-logo {
    height: 100px;
    margin-bottom: 10px;
}
nav {
    background: #f6a800;
    padding: 0;
    border-bottom: 2px solid #e0e0e0;
}
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.navbar a {
    color: #222;
    text-decoration: none;
    padding: 16px 18px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}
.navbar a:hover {
    background: #e28c00;
    color: #fff;
}
.main-content {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 30px 40px 40px 40px;
}
.form-title {
    font-size: 1.6em;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.form-group label {
    flex: 0 0 220px;
    font-weight: 500;
    color: #222;
}
.form-group input, .form-group select {
    flex: 1;
    max-width: 50%;
    min-width: 200px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    transition: border 0.2s;
}
.form-group input:focus {
    border: 1.5px solid #f6a800;
}
.form-group .input-icon {
    margin-right: 8px;
    color: #888;
    font-size: 1.1em;
}
@media (max-width: 700px) {
    .main-content {
        padding: 15px 5px;
    }
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    .form-group label {
        margin-bottom: 6px;
        flex: none;
    }
}
