/* Form Design Css here */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
}
body {
    background: linear-gradient(135deg, #f0f4ff 0%, #eaf9f4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 10px;
}
.login-box {
    background: #ffffffe4;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    border: 2px solid rgb(142, 144, 151);
    box-shadow: 0 8px 24px rgb(7, 7, 7);
    text-align: center;
}
.login-box h2 {
    margin-bottom: 15px;
    color: #2b2b2b;
}
.login-box p {
    margin-bottom: 30px;
    color: #454545;
    font-size: 0.9rem;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    text-align: left;
    margin: 10px 0 5px;
    font-weight: 550;
    color: #2b2b2b;
}
input {
    padding: 10px;
    border: 1px solid #cfcece;
    outline: none;
    transition: 0.3s;
}
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: #2b2b2b;
}
.options a {
    color: #2b2b2b;
    text-decoration: none;
    margin: 0.4rem 0;
}
button {
    padding: 12px;
    margin-top: 10 px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}
button[type="submit"] {
    background: black;
    color: white;
}

.google {
    background: #e74c3c;
    color: #fff;
}
