@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

body,
html {
    margin: 0;
    padding: 0;
    font-family: Poppins;
    background-color: #fff;
}

/* Login */

.background-all {
    background-color: #fff !important;
}

.Login-block {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
}

/* Left Side */
.left_side {
    background-color: #44576d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 50%;
}

.contant-above-login {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.big-text {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    font-family: Poppins;
}

#text-effect {
    color: #1A76D1;
}

.small-text {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    font-family: Poppins;
    width: 80%;
}

.image-contant-login {
    width: 50%;
    height: 55%;
    margin-top: 20px;
    background-image: url("../images/home-art.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Right Side - Login Form */
.Container-Login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 50%;
}

.Form-login-box {
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.avatar {
    background-color: #1A76D1;
    border-radius: 4px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.avatar .avatar-icon {
    font-size: 30px;
}

.Form-login-box h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 10px;
    text-align: left;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
}

.btn-ready-login {
    background-color: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s all ease;
}

.btn-ready-login:hover {
    opacity: .8;
}

.links-container {
    margin-top: 15px;
}

.links-container a {
    color: #1a73e8;
    text-decoration: none;
    transition: .3s all ease;
}

.links-container a:hover {
    text-decoration: underline;
    opacity: .8;
}

.separator {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.line {
    flex: 1;
    height: 1px;
    background-color: #ccc;
    border: none;
}

.input-group {
    position: relative;
    margin: 10px 0px;
}

.input-group .input {
    border: solid 1.5px #9e9e9e;
    border-radius: 4px;
    background: none;
    padding: 1rem;
    font-size: 1.2rem;
    color: #000;
    transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group .user-label {
    position: absolute;
    left: 15px;
    top: -4px;
    color: #9e9e9e;
    font-size: 1.2rem;
    pointer-events: none;
    transform: translateY(1rem);
    transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}


.input-group .input:focus,
.input-group .input:not(:placeholder-shown) {
    outline: none;
    border: 1.5px solid #1a73e8;
}

.input-group .input:focus~.user-label,
.input-group .input:not(:placeholder-shown)~.user-label {
    transform: translateY(-50%) scale(1);
    padding: 0 .2em;
    color: #2196f3;
    font-size: 1rem;
    background-color: #ffffff;
}

.error-msg {
    color: red;
    font-size: 14px;
}

/* Registration Block */
.registration-block {
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 100vh;
    background-color: #fff;
}

.registration-block .image-register {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #44576d;
    color: #fff;
    gap: 20px;
}

.registration-block .image-register img {
    width: 70%;
}

.registration-block .contant-above-login .big-text {
    font-size: 35px;
    font-weight: bold;
}

.registration-block .contant-above-login .small-text {
    font-size: 16px;
    text-align: center;
    max-width: 80%;
}

.registration-block #text-effect {
    font-size: 38px;
    background: -webkit-linear-gradient(#ffffff, #2020205b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.registration-block .already {
    margin: 20px 0px;
}

.registration-block .already a {
    color: #ddd;
    margin-left: 5px;
    text-decoration: none;
}

.registration-block .already a:hover {
    text-decoration: underline;
}

.registration-block .signup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.registration-block .separator {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 10px 0;
}

.registration-block .line {
    flex-grow: 1;
    border: none;
    border-top: 1px solid #ccc;
}

.registration-block .or-text {
    margin: 0 10px;
    font-weight: bold;
}

/* Form Section */
.form-field-register {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.form-container {
    width: 80%;
    max-width: 400px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.submit-btn {
    background-color: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s all ease;
}

.submit-btn:hover {
    opacity: .8;
}