*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"poppins",sans-serif;
}
body{
    background-color: #00100f;
    min-height: 100vh;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: space-between; /* Space out header, main, and footer */
}
.container{
    background-color: #1d1d1d;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    width:450px;
    padding:1.5rem;
    margin:50px auto;
    border-radius:10px;
}
form{
    margin:0 2rem;
}
.form-title{
    font-size:1.5rem;
    font-weight:bold;
    text-align:center;
    padding:1.3rem;
    margin-bottom:0.4rem;
}
input{
    color:inherit;
    width:100%;
    background-color:transparent;
    border:none;
    border-bottom:1px solid white;
    padding-left:1.5rem;
    font-size:15px;
}
/* Style for the select dropdown inside input-group */
.input-group select {
    width: 100%;
    background-color: transparent;
    color: inherit;
    padding-left: 1.5rem;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid white;
    appearance: none; /* Hide default arrow for consistency */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='292.362' height='292.362' viewBox='0 0 292.362 292.362'%3E%3Cpath fill='%23fff' d='M287.003 69.245L166.189 188.497c-7.842 7.842-20.523 7.842-28.365 0L5.549 69.245C-.61 63.085-.61 53.22 5.549 47.06l14.182-14.181c6.159-6.16 16.026-6.16 22.186 0l109.364 109.362L250.645 32.879c6.159-6.16 16.026-6.16 22.186 0l14.182 14.181c6.159 6.159 6.159 16.025-.01 22.185z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem top 50%;
    background-size: 12px;
    cursor: pointer;
}

.input-group select:focus {
    outline: none;
    border-bottom: 2px solid hsl(327, 90%, 28%);
}

.input-group select option {
    color: #000;
    background-color: #fff;
}

/* Add margin below each input-group for spacing */
.input-group {
    margin-bottom: 1.5rem; /* Adjust spacing between inputs and select */
}

/* Label positioning for select to ensure consistent behavior */
.input-group select:focus~label,
.input-group select:not([value=""])~label {
    top: -3em;
    color: hsl(327, 90%, 28%);
    font-size: 15px;
}

input:focus{
    background-color: transparent;
    outline:transparent;
    border-bottom:2px solid hsl(327,90%,28%);
}
input::placeholder{
    color:transparent;
}
label{
    color:#757575;
    position:relative;
    left:1.2em;
    top:-1.3em;
    cursor:auto;
    transition:0.3s ease all;
}
input:focus~label,input:not(:placeholder-shown)~label{
    top:-3em;
    color:hsl(327,90%,28%);
    font-size:15px;
}
.recover{
    text-align:right;
    font-size:1rem;
    margin-bottom:1rem;

}
.recover a{
    text-decoration:none;
    color:orangered;
}
.recover a:hover{
    color:blue;
    text-decoration:underline;
}
button{
    font-size:1.1rem;
    padding:8px 0;
    border-radius:5px;
    outline:none;
    border:none;
    width:100%;
    background:orangered;
    color:white;
    cursor:pointer;
    transition:0.9s;
}
button:hover{
    background:#07001f;
}
.or{
    font-size:1.1rem;
    margin-top:0.5rem;
    text-align:center;
}
.icons{
    text-align:center;
}
.icons i{
    color:orangered;
    padding:0.8rem 1.5rem;
    border-radius:10px;
    font-size:1.5rem;
    cursor:pointer;
    border:2px solid #dfe9f5;
    margin:0 15px;
    transition:1s;
}
.icons i:hover{
    background:#07001f;
    font-size:1.6rem;
    border:2px solid orangered;
}
.links{
    display:flex;
    justify-content:space-around;
    padding:0 4rem;
    margin-top:0.9rem;
    font-weight:bold;
}
 #signUpButton, #signInButton{
    color:orangered;
    border:none;
    background-color:transparent;
    font-size:1rem;
    font-weight:bold;
}
#signUpButton:hover, #signInButton:hover {
    text-decoration:underline;
    color:blue;
} 
.messageDiv{
    background-color:hsl(327,90%,28%);
    color:white;
    padding:10px 20px;
    margin:10px;
    border-radius: 5px;
    font-size:1rem;
    opacity:0;
    animation:fadeOut 7s forwards;

}










