
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    padding: 0px;
    margin: 0px;
    font-family: "roboto",sans-serif;
    font-size: 15px;
}



.suggestion{
    padding: 10px;
}

.suggestion:hover{
    background-color: yellow;
}

h2{
    font-size: 25px;
}

/* #logo{
    display: block;
    width: 40%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%; 
    border: lightblue groove;
    padding: 5px;
    padding-bottom: 5px;
    border-radius: 1.2rem;
    background-color: white;
}

#head{
    background: rgb(109, 109, 213) ;
    background;
    min-height: 30%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: rgb(0, 0, 0) solid 2px;
} */

.head {
    background-color: white;
    color: black;
    padding: 15px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.titleCon h1 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.titleCon span {
    display: block;
    font-size: 14px;
    color: grey;
}

.menuBar {
    display: flex;
    gap: 15px;
}

.link {
    color: black;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 1.2rem;
    transition: all 0.4s ease;
}

.link:hover {
    color: white;
    background-color: rgb(234, 70, 70);
    text-decoration: none;
}

.link:focus{
    color: white;
    background-color: rgb(234, 70, 70);
    text-decoration: none;
    border: none;
    outline: none;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menuBar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10%;
        background: grey;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 10px;
        width: 150px;
    }

    .link{
        color: white;
    }

    .menuBar.active {
        display: flex;
        margin-top: 20px;
    }

    .menu-icon {
        display: block;
    }
}

#form{
    margin-top: 30px;
    width: 600px;
    min-height: 500px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding: 10px;
    background-color: white;
    margin-bottom: 50px;
}

#qr-img{
    margin-top: 20px;
    width: 335px;
    border: 2px solid red;
}

#layout{
    /*background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    */
    background: linear-gradient(115deg, #56d8e4 10%, #9f01ea 90%);
}

.input{
    width: 70%;
    height: 28px;
    padding-left: 5px;
    padding-top: 2px;
    border-radius: 5px;
    border: groove 2px;
    border-color: lightsalmon;
}

input:read-only {
    background-color: #f0f0f0; /* Light gray background */
    border: 1px solid #ccc; /* Gray border */
    color: #888; /* Dimmed text */
    pointer-events: none;
}


.selfintro{
    min-height: 150px;
    text-align: center;
}

.content{
padding: 5px;
padding-left: 20%;

}

.label{
    padding-top: 6px;
    display: block;
    font-weight: 500;
    padding-bottom: 3px;
}

#title{
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 0.01px solid lightblue;
    color: rgb(107, 104, 104);
    text-transform: uppercase;
}

.star{
    color:red;
}

.input:hover{
    border: groove 2px;
    border-color: #9f01ea;
    transition: 0.3s;
    
}

.input:focus{
    outline: none;
    border-radius: 0px;
    border: groove 2px;
    border-color: #9f01ea;
}

.buttons{
    text-align: center;
}

.button{
    width: 70px;
    padding: 7px;
    margin: 15px;
    background-color:crimson;
    color: white;
    outline: none;
    border: none;
}

.button:hover{
    background-color: black;
    color: white;
    border-radius: 1.2rem;
    transition: ease 0.5s;
}

#selfIntro{
    min-height: 150px;
}

.errorMessage{
    color: red;
    font-size: 14px;
    display: none;
}

#aadharProof, #photo, #resume{
    padding: 10px;
    border: none;
}

.fileType{
    font-weight: 400;
    font-size: 13px;
}



/* Hide the arrows in most modern browsers */
input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none; /* Standard */
}

/* Hide the arrows in Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


@media screen and (max-width:769px){
    #form{
        display: block;
        width: 80%;
    }
    .input{
        min-width: 260px;
    }
}

@media screen and (max-width:562){
    .content{
        padding-left: 12%;
    }
}

@media screen and (max-width:426px){
    #form{
        display: block;
        width: 80%;
    }
    .input{
        min-width: 260px;
    }
    .content{
        padding-left: 10%;
    }
}

@media screen and (min-width:381px) and (max-width:425px){
    .content{
        padding-left: 7%;
    }
}

@media screen and (min-width:377px) and (max-width:380px){
    .content{
        padding-left: 3%;
    }
}

@media screen and (max-width:376px){
    .input{
        min-width: 260px;
    }
    .content{
        padding-left: 5%;
    }
}

@media screen and (max-width: 321px){
    .input{
        min-width: 100%;
    }
    .content{
        padding-left: 0%;
    }
}

@media screen and (min-width: 321px) and (max-width:375px) {
    .input{
        min-width: 100%;
    }
    .content{
        padding-left: 0%;
    }
}

/* styles for studLogin.php */

#stud-login-con{
    background-color: #56baed;
}

#stud-login-cen{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#stud-login-ccon{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 450px;
    min-height: 550px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
}

.sl-label{
    font-weight: 400;
    font-size: 18px;
    margin-top: 30px;
    display: block;
}

.sl-inp{
    height: 40px;
    width: 300px;
    border: none;
    border-bottom: 2px ridge rgb(29, 91, 177);
    background-color: rgb(241, 230, 230);
}

.sl-inp:focus{
    outline: none;
    border-bottom: 3px solid black;
}


#studLogo{
    width: 100px;
    height: 100px;
    opacity: 0.5;
}
#studLogo:hover{
    opacity: 1;
    transition: 1s;
}
.sl-btn-con{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.sl-btn{
    padding: 10px;
    background-color: rgb(224, 85, 85);
    color: white;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 500;
}

.sl-btn:hover{
    background-color: black;
    transition: 1s;
}

.block{
    display: block;
}

#new-reg-link-con{
    margin-top: 20px;
    text-align: center;
    opacity: 0.5;
}

#new-reg-link-con:hover{
    opacity: 1;
}

#reg-link{
    color: green;
    font-weight: 500;
}

#sl-top{
    text-align: center;
    margin-top: px;
}

#sl-title{
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
/* End/

/* ADMIN pg styles*/

#admin-layout{
    /* background-image: url(../Images/admin-bg-edited.jpg); */
}

#admin-title{
    color: rgb(197, 46, 46);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
}

#admin-title-con{
    text-align: center;
}

#admin-login{
    background: radial-gradient(circle at 24.1% 68.8%, rgb(50, 50, 50) 0%, rgb(0, 0, 0) 99.4%);
}

#admin-con{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
}

#admin-login{
    padding: 50px;
}

.admin-label{
    display: block;
    color: white;
    margin-top: 20px;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 500;
}

.admin-inp{
    color: rgb(39, 137, 198);
    font-size: 16px;
    font-weight: 500;
    height: 30px;
    width: 250px;
    border: none;
    background:none;
    border-bottom: 2px solid gold;
}

.admin-inp:focus{
    outline: none;
    border-bottom: 3px solid white;
}

#admin-btn{
    background-color: rgb(75, 138, 209);
    border: none;
    padding: 8px;
    margin-top: 25px;
    font-weight: 500;
    letter-spacing: 1px;
}

#admin-btn:hover{
    cursor: pointer;
    background-color: rgb(171, 49, 49);
    color: white;
}

#admin-btn-con{
    text-align: center;
}

.admin-btn{
    background-color: yellow;
    color: black;
    padding: 10px;
    cursor: pointer;
}

table{
    margin-top: 5px;
    border: 2px solid black;
    border-collapse: collapse;
}

th,tr,td{
    border: 1px solid black;
}

th{
    border-bottom: 2px solid black;
}

th,td{
    padding: 5px;
}

.resMenuBar{
    display: none;
    flex-direction: column;
}

@media screen and (max-width: 425px){
    .menuBar{
        display: none;
    }
    .resMenuBar{
        display: flex;  
    }
}
/* end */

/* tran entry */
.tran-form-cccon{
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-around;
    padding: 50px ;
}

.tran-e-inp{
    display: block;
    width: 250px;
    height: 30px;
    padding: 2px;
}

.tran-e-inp-con{
    margin-top: 20px;
}

.tran-title-con{
    text-align: center;
    padding-top: 20px;
}

.tran-title{
    font-size: 22px;
    font-weight: 600;
}

.tran-e-btn{
    height: 30px;
    width: 80px;
}

.tran-e-submit{
    background-color: green;
    color: white;
}

.tran-e-reset{
    background-color: red;
    color: white;
}

/* end */


/*admin dashboard*/
.dash-con{
    background: url(../Images/dash-bg.jpg);
    min-height: 87vh;
}

.dash-ccon{
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.dash-links-con{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: white;
}

.dash-links{
    color: black;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.dash-links:hover{
    color: red;
}
/* end */