body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f6f8fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
h1 { 
  color: #ff5733; /* Reddish-orange */
  text-align: center;
}

p {
font-size: 16px;
text-align:center;
margin-top:-10px;
color: #333;
      
}

.form-container {
    background: #fff;
    box-shadow: 14px 14px 20px #b4b4b4, -14px -14px 20px rgb(189, 192, 189);

    border-radius: 15px;
    padding: 40px;
    margin-top:80px;
    width: 80%;

    max-width: 300px;
    text-align: center;
}

.form-container h1 {
    color: #ff5722;
    font-size: 24px;
    margin-top:10px;
}


.input-group {
    margin-bottom: 20px;
    text-align: left;
    
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: black;
}

.input-group input {
     background: #f7f5f3;
     padding: 10px;
     padding-left: 20px;
     font-size: 16px;
     width:100%;
     border:none;
     border-radius: 15px;
     box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px lightgrey;
    }

     

.input-group input:focus {
       border: none;
       outline: none; 
}

.btn {
    display: inline-block;
    width: 110%;
    padding: 10px;
    background: #ff5722;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top:10px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e64a19;
}

.switch-link {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
}

.switch-link a {
    color: #ff5722;
    text-decoration: none;
}

.switch-link a:hover {
    text-decoration: underline;
}