
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #e3f2fd;
}

.full_container {
    display: flex;
    background: white;
    width: 60%;
    height: 60%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #0d6dfd28;
}

.left-section {
    flex: 1;
    background: #f0f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.left-section img {
    width: 100%;
    height: 100%;
}

.right-section {
    flex: 1;
    padding: 40px;
    text-align: center;
    width: 100%;
    height: 100%;
}

h2 {
    font-size: 24px;
    color: #333;
}

p {
    font-size: 14px;
    color: #6666669c;
    margin: 20px 0;
}

.input_group {
    display: flex;
    align-items: center;
    background: #007bff03;
    padding: 12px;
    border-radius: 8px;
    /* margin: 20px 0; */
    margin-top: 4%;
    border: 1px solid #007bff17;
}

.input_group i {
    margin-right: 10px;
    color: #007bff;
}

.input_group input {
    border: none;
    outline: none;
    background: none;
    width: 100%;
    font-size: 16px;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 20px 0;
}

.options a {
    color: #007bff;
    text-decoration: none;
    font-style: italic;
}

button {
    width: 100%;
    padding: 9px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

button:hover{
  background-color: #417398;
}

.login-btn {
    background: #007bff;
    color: white;
    width: 40%;
    border-radius: 6px;
}

.create-btn {
    background: #ddd;
    color: #333;
}

.social-icons {
    margin-top: 15px;
}

.social-icons i {
    font-size: 20px;
    margin: 0 10px;
    cursor: pointer;
    color: #555;
}

input::placeholder{
  font-size: 12px;
}

.login_button{
    align-items: end;
    justify-content: end;
    display: flex;
  
}

.login_container{
  width: 100%;
  height: 100%;
  display: flex;
    justify-content: center;
    align-items: center;
}

.input_group:hover,
.input_group:focus-within {
    border-color: #007bff62;
    box-shadow: 0px 0px 10px rgba(0, 123, 255, 0.11);
}

#loader_button{
    display: none;
    background: #007bff;
    color: white;
    width: 40%;
    border-radius: 6px;
    
}

#email_error{
    font-size: 12px;
    text-align: left;
    color: red;
    padding: 3px;
    display: none;
}
#password_error{
    font-size: 12px;
    text-align: left;
    color: red;
    padding: 3px;
    display: none;
}
#email-message1{
    font-size: 12px;
    text-align: left;
    color: red;
    padding: 3px;
    display: none;
}
#password-message1{
    font-size: 12px;
    text-align: left;
    color: red;
    padding: 3px;
    display: none;
}

.login_logo{
max-height: 40px;
  margin-right: 30px;
  margin-bottom: 22px;
}