@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {margin: 0;padding: 0;box-sizing: border-box;}

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

:root {
  --bi-color-primary:#2ca9d7;
  --bi-color-secondary:#3d3968;
  --bi-color-dark:#212529;
  --bi-color-danger:#fb0606;
  --bi-color-green:#119744;
  --bi-color-white:#ffffff;
}

.container {display: flex;width: 100%;height: 100vh;}
.image-section {
    position: relative;
    flex: 1;
    background: url('../image/login-background.jpg') no-repeat center center;
    background-size: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.form-section {
    width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.form-section .logo-details {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bi-color-primary);
}

.form-section .logo-details .logo-name {
    font-size: 30px;
    font-weight: 600;
}

.form-section .logo-details i {font-size: 36px;margin-right: 15px}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

button.google {
    background-color: #4285F4;
    color: white;
}

button.facebook {
    background-color: #3b5998;
    color: white;
}

form input {
  height: 55px;
  width: 100%;
  background-color: #eee;
  color: #484848;
  border: solid 2px rgba(0,0,0,0);
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 16px;
  padding: 0 14px;
  font-family: 'Poppins', sans-serif;
}

form input:hover {
  border:solid 2px #ddd;
  background-color:#f5f5f5
}



form input:focus {
  outline: none;
  background: #fff;
  border:solid 2px #ddd;
}

::placeholder {
  color: #777;
  font-size: 16px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.options a {
    text-decoration: none;
    color: #3498db;
}

button.login-button {
    width: 100%;
    background-color: var(--bi-color-primary);
    color: var(--bi-color-white);
    font-size: 1rem;
    padding: 10px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .container {flex-direction: column;}
    .image-section {display: none;}

    .form-section {
        flex: none;
        width: 100%;
        height: 100vh;
        box-shadow: none;
        padding: 30px;
    }
}