/*body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #cbccce, #b1d4ec);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 320px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: auto;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    color: #666;
}

input[type='tel'],
input[type='text'],
input[type='password'] {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input[type='submit'] {
    padding: 12px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type='submit']:hover {
    background-color: #0056b3;
}

.otp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resend-otp {
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
}

.resend-otp:hover {
    text-decoration: underline;
}
*/

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #cbccce, #b1d4ec); /* Background color gradient */
    margin: 0;
    padding: 0;
}

.login-container {
    width: 300px;
    height: 400px;
    margin: 100px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
}

input[type='tel'],
input[type='text'],
input[type='password'] {
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input[type='submit'] {
    padding: 10px 20px;
    background-color: lightslategrey;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

input[type='submit']:hover {
    background-color: #0056b3;
}
.login-container {
width: 320px;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
text-align: center;
margin-bottom: 20px;
}

.logo {
width: 100px;
height: auto;
}