/* general reset */
*{
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* body styling */
body{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('bg.jpg')  no-repeat center center/cover;;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

/* container styling */
.container{
    background: none;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* heading */
h2{
    color : #ffffff;
    margin-bottom: 20px;
}

/* inputfields */
input, select{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* login button */
button{
    width: 100%;
    background: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

/* error and success using P Tag*/
p{
   font-size: 14px;
   margin-top: 10px;
   color: white;
}
p a{
  color: white;  
}

/* mobile view responsiveness */
@media (max-width: 480px){
    .container{
        width: 90%;
        padding: 20px;
    }
}