* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
     
}

body {
    background-image: linear-gradient(rgba(0, 0, 50, 0.5)), url(../pictures/the-polytechnic-aran-orin.jpg);
    background-position: center;
    background-repeat: none;
    background-size: cover;
}

.cointainer .header {
    width: 100%;
    background-color: #ffff;
    box-shadow: blue 0px 2px 0px 2px;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center; 
}

.header img {
    height: 20vh;
    width: 10%;

}

.text-header p {
    font-size: 20px;
    font-weight: 600;
}

.text-header {
    color: #03055b;
    text-align: center;
}

.text-header span {
    color: green;
    font-weight: 600;
    font-size: 15px;
    margin-top: 5px;
     
}

.main-body {
    width: 40%;
    height: auto;
    margin: auto;
    margin-top: 3%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: #03055b 1px 5px 2px 5px;
    border-radius: 25px;
    margin-bottom: 2rem;
}

.main-body span {
    font-size: xx-large;
    font-weight: 500;
    text-shadow: 2px 2px 2px black;
    color: #03055b;
    min-width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
     
}

.input-box {
    position: relative;
    margin: 20px 0;
}

form {
    padding: 10%;
}

.input-box input {
    width: 90%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #03055b;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    margin: 10px;
    
}

label { 
    font-size: 20px;
    color: #03055b;
    font-weight: 500;
}

.link {
    padding-top: 10px;
    margin-left: 10px;

}

.link a {
    color: #03055b;
    ;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
}

.submit-botton {
    width: 50%;
    height: 45px;
    background: #03055b;
    border-radius: 9px;
    box-shadow: 0 0 10px rgba(0, 0, 0, -1);
    margin-top: 10px;
    font-size: 30px;
    font-weight: 600;
    color: #eee;
    cursor: pointer;
    transition: 2s;
    margin-left: 25%;
}

.submit-botton:hover {
    background-color: #fff;
    color: #03055b;
}
#tabBttDiv{  
    display: flex;
    justify-content:flex-start;
    align-items: center;
    gap: 1rem;
}
#tabBttDiv button{
    border-style: none;
    background-color: rgb(163, 199, 187);
    padding: 2%;
    font-weight: Bold;
    margin-top: 3%;
    margin-left: 2%;
    border-radius: 0.3rem;
}
@media screen and (max-width: 760px){
    .text-header h2{
        font-size: 1.2rem;
    }
    .text-header p{
        font-size: 1.1rem;
    }
    .text-header span{
        font-size: 1.1rem;
    }
    .header img {
        height: 10vh;
        width: 20%;
}
.main-body{
    width: 90%;
    height: auto;
     
}
}  
