
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Monsterrat", sans-serif;
}

body {
background-color: rgba(141, 160, 186, 0.737);
font-family: 'Montserrat', sans-serif;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
}
.clublogoBox{
    width: 90%;
    display: flex;  
    flex-direction: row;
    .clublogo{
        padding-top: 2%;
        width: 13%;
        img{
            border-radius: 100%;
            width: 100%;
            padding: 3%;
        }
    }
    .dev{
        padding-top: 0;
        width: 20%;
    }
    
    .tech{
        padding-top: 1%;
        width: 17%;
    }
    .down{
        padding-top: 3%;
        img{
            width: 110% ;
            margin-right: 1%;
        }
    }
}
.ren{
    img{
        height: 90%;
    }
    margin-right: 1%;
}

.title{
    font-size: 500%;
    font-family: "Montserrat", sans-serif;
    color: rgb(0, 0, 102);
}
.container {
width: 100%;
max-width: 800px; /* Optional: Set a max-width for larger screens */
padding: 20px;
border-radius: 5px;
display: flex;
flex-direction: column;
align-items: center;
}

.container form {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.logoBox {
    width: 80%;
    margin: 10px 0;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .logoBox {
        width: 70%;
    }
}
.inputBox {
width: 100%;
margin: 10px 0;
border-radius: 5px;
label{
    margin-left: 10%;
    color: #0B1215;
    font-size: x-large;
    font-weight:bolder;
}
@media (max-width: 768px) {
    label {
        font-size: large;
    }
}
}

.inputBox input[type="text"],
.inputBox input[type="email"]{
margin-top: 10px;
width: 80%;
height: 50px;
border-radius: 5px;
background-color: #0b121501;
border: 2px solid rgb(0, 0, 0);
padding: 0px 10px;
font-size: 16px;
margin-left: 10%;
color: black;
}

.inputBox textarea {
width: 100%;
height: 120px;
border-radius: 5px;
border: 2px solid rgb(0, 0, 0);
padding: 0px 10px;
font-size: 16px;
color: #444;
background-color: transparent;
}
.center{
    text-align: center;
}
.left{
    margin-right: 10%;
}

.nav{
    width: 150%;    
padding: 10px 20px;
border: none;
border-radius: 15px;
background: rgb(0, 0, 0);
font-family: "Montserrat";
color: #FFF;
font-size: 20px;
font-weight: bold;
cursor: pointer;
}
.inputBox button{
width: 30%;    
padding: 10px 20px;

border: none;
border-radius: 15px;
background: rgb(0, 0, 0);
font-family: "Montserrat";
color: #FFF;
font-size: 20px;
font-weight: bold;
cursor: pointer;
margin-top: 10px; /* Add margin-top for spacing */
}

.inputBox button:hover {
background: rgb(31, 31, 31);
transition: all 0.3s ease;
}

::placeholder {
font-size: 16px;
}
.green{
background: rgb(0, 255, 106);
}
.alert {
width: 100%;
background: rgba(0, 255, 106, 0.475);
font-family: 'Montserrat' ,sans-serif;
padding: 10px 20px;
border-radius: 5px;
text-align: center;
font-size: 18px;
font-weight: 900;
display: none;
a{
    text-decoration: none;
}
}
.alert1{
    width: 100%;
    background:rgba(0, 255, 106, 0.475);
    font-family: 'Montserrat' ,sans-serif;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    display: none;
    a{
        text-decoration: none;
    }
    }

.inputBox select {
    margin-left: 10%;
    width: 80%;
    height: 50px;
    border-radius: 5px;
    background-color: transparent;
    margin-top: 10px;
    border: 2px solid rgb(0, 0, 0);
    padding: 0 10px;
    font-size: 16px;
    color: red(66, 66, 66);
    outline: none; /* Remove default outline */
    appearance: none; /* Remove default browser styling */
}

.inputBox select option {
    color: black; /* Text color for options */
    background-color: white; /* Background color for options */
}

.custom-select select {
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: 2px solid rgb(0, 0, 0);
    padding: 0 10px;
    font-size: 16px;
    color: white;
    outline: none;
    appearance: none; /* Removes default arrow for custom styling */
}

.custom-select select option {
    padding: 30px;
    border: none;
    color: #0B1215; /* Text color of options */
}

.inputBox input[type="file"] {
    padding: 10px;
    font-size: 14px;
    color: #333;
    background-color: transparent;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Montserrat", sans-serif ;
    margin-top: 10px;
    width: 80%;
    height: 50px;
    border-radius: 5px;
    background-color: #0b121501;
    border: 2px solid rgb(0, 0, 0);
    padding: 0px 10px;
    font-size: 16px;
    margin-left: 10%;
    color: black;
}



.inputBox input[type="file"]::-webkit-file-upload-button {
    padding: 10px 15px;
    font-size: 14px;
    margin-top: 1%;
    color: white;
    background-color: #0266d0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Montserrat", sans-serif;
}




@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
    

:root {
    --gradient: linear-gradient(45deg, blue,purple, red);
  
  }


.title{
    font-size: 400%;
    font-family: "Montserrat", sans-serif;
    background-image: var(--gradient);
    background-clip: text;
    color: transparent;
    background-size: 300%;
    transition: background-position 1s;
    animation: gradientShift 5s infinite linear;
}
@media (max-width: 768px) {
    .title {
        font-size: 300%;
    }
}

/* For screens that are 480px or less */
@media (max-width: 480px) {
    .title {
        font-size: 200%;
    }
}


.form-section {
    display: none;
}

.form-navigation {
    text-align: center;
    margin-top: 20px;
}

.form-navigation button {
    margin: 5px;
}
