body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #b5e2ff; 
}

header {
    background-color: #e8f7ff;
    padding: 8px 0;
}
  
.container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
.logo img {
    height: 60px;
}
  
.college-name h1 {
    font-size: 28px;
    margin-left: -250px;
    margin-right: 200px;
    font: sans-serif;
    font-weight: bold;
}
  
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
  
nav ul li {
    margin-right: 15px;
    font-size: 20px;
}
    
nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

  nav ul li a.active {
    color: #333;
}

nav ul li a:hover {
    color: #4169E1;
}
  
nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #007bff;
}
    
nav .login-button {
    padding: 8px 16px;
    border: 2.5px solid #007bff;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
    font-size: 18px;
}
  
nav .login-button:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}


.Contact-Container{
    width: 80%;
    margin: 40px auto;
}

.contact-box{
    background: #fff;
    display: flex;
}

.contact-left {
    flex-basis: 60%;
    padding: 40px 60px;
    font-family: 'Poppins', sans-serif;
}

.contact-right {
    flex-basis: 40%;
    padding: 40px ;
    background: #37acf5;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

h1 {
    margin-bottom: 10px;
    font: 2.8em sans-serif;
    text-align: center;
    font-weight: 600;
}

.Contact-Container p {
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px; 
    text-align: center;
}

.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.input-row .input-group {
    flex-basis: 45%;
}

input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

textarea{
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

label{
    margin-bottom: 6px;
    display: block;
    color: #007bff;
}

button{
    background: #1aa3f8;
    width: 100px;
    border: none;
    outline: none;
    color: #fff;
    height: 35px;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px 0px rgba(28, 0, 181, 0.3);
}

.contact-left h3{
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 20px;
}

.contact-right h3{
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 20px;
    color: #000;
}

tr td:first-child{
    padding-right: 20px;
}

tr td{
    padding-top: 20px;
}