/*index.html*/
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}
.main-div {
    /*width: 90%;*/
    height: 100vh;
    position: absolute;
    left: 50px;
}
.logo {
    text-align: center;
    margin-top: 20px;
    margin-left: 100px;
}
.logo h2 {
    text-transform: uppercase;
    font-size: 30px;
    color: #6B5ACD;
    text-shadow: 2px 2px 5px orange;
    text-decoration: underline;
}
.logo h2:hover {
    transform: scale(1.3);
    transition: 1s;
    cursor: pointer;   /*make mouse shape like hand with one finger(like out sign in cricket)*/
    color: orange;
    text-shadow: 2px 2px 5px #6B5ACD;
}
.logo h2:not(:hover) {
    transform: scale(1);  /*after cursor moves, text back to its original position*/
    transition: 1s;
}
.body-form {
    background-color: #6B5ACD;
    border: 2px solid black;
    margin-left: 100px;
}
.form {
    /*width: 60px;*/
    height: auto;
    margin: 0 auto;
    padding: 20px 20px;
}
.form label {
    display: inline-block;
    width: 200px;
    text-transform: uppercase;
    font-weight: bold;
}
.form div {
    margin: 20px 0;
}
.qualification table {
    display: inline-block;
}
#qualification-heading {
    vertical-align: top;
}
.address {
    vertical-align: top;
}
table {
    width: fit-content;
    height: auto;
}
table tr td {
    text-align: center;
}
.btn-span {
    position: relative;
    left: 400px;
}
.btn-submit {
    width: 100px;
    height: 50px;
    color: white;
    background-color: green;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
    margin: 10px;
}
.btn-submit:hover {
    color: rgb(17, 124, 17);
    background-color: white;
    transition: 1s;
}
.btn-reset {
    width: 100px;
    height: 50px;
    color: white;
    background-color: red;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
    margin: 10px;
}
.btn-reset:hover {
    color: rgb(251, 0, 0);
    background-color: white;
    transition: 1s;
}
/*success.html*/
.main-success {
    margin-top: 60px;
    text-align: center;
}
.thankyou-img {
    height: 300px;
    width: 300px;
}
.thankyou-h2{
    color: rgb(116, 180, 21);
    font-size: 40px;
}
.text-p {
    font-weight: bold;
    font-size: x-large;
    color: purple;
}