/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: #0b1820;
    color: white;
    overflow-x: hidden;
    height: 100vh;
    margin: 0;
    
}
ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

}
*{
    list-style: none;
    flex-wrap: wrap;
    box-sizing: border-box;
}

header{
    background-color:#0b1820;
    
   
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:20px;
}

.form-container {
    background: #030d13;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #008CDB;
    width: 350px;
    text-align: center;

}
.form{  
    min-height:70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Input Fields */
.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #0e1f29;
    color: white;
    outline: none;
    font-size: 1rem;
}
.go-back{
    width:50px;
    height: 50px;
    background-color: #183546;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}
/* Button */
button {
    width: 100%;
    padding: 10px;
    background: #00A2FF;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}



/* Links */
p a {
    color: #00A2FF;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
