
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #47289d;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background-circle {
    position: absolute;
    border-radius: 50%;
    width: 400px;
    height: 400px;
}

.circle1 {
    background: linear-gradient(to right, #87ceeb, #00bfff);
    top: -60px;
    left: -68px;
}

.circle2 {
    background: linear-gradient(to bottom right, #ff0000, #87ceeb);
    bottom: -60px;
    right: -50px;
}

.login-container {
    padding: 50px;
    border-radius: 15px;

    box-shadow: 0 0 15px black;
    background-color: #fff;
    text-align: center;
    /* width: 300px; */
    padding-top: 0px;
   
}



h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #ff4500;
    font-family: cursive;

}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

label {
    display: block;
    margin-bottom: 8px;
    color: black;
    font-family: cursive;
    font-size: 1.3em;
}

input {
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1.3em;
    transition: border 0.3s ease;
}

input:focus {
    border: 2px solid #ff4500; 
    outline: none;
}

.btn {
    background-color: #ff4500; 
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0fb0e6; 
}

.form-group p{
    display: flex;
    font-size: 1.2em;
    justify-content: space-between;
    font-family: cursive;
    margin-top: 30px;
}

#signup {
    color: #0fb0e6;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    font-family: cursive;
    /* margin-top: -3px; */
    transition: text-decoration 0.3s ease; 
}

#signup:hover {
    text-decoration: underline;
}
