* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

a {
    color: #db3732;
    text-decoration: none;
}

body, html {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.login-section {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.login-content {
    width: 42.5%; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-logo {
    font-size: 34px; 
    color: #333;
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.login-logo img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

h2 {
    font-size: 26px; 
    color: #333;
    margin-bottom: 20px;
}

.social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-login a {
    padding: 12px 22px; 
    border-radius: 7px; 
    cursor: pointer;
    font-size: 16px; 
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
    color: #fff;
}

.social-login a.facebook {
    background-color: #3b5998; 
    border: none;
}

.social-login a.google {
    background-color: #fff;
    color: #d9534f; 
    border: 2px solid #d9534f; 
}

.social-login a.sso {
    background-color: #fff;
    color: #6c757d;
    border: 2px solid #6c757d;
}

.social-login a img {
    width: 18px;
    height: 18px;
}

.input-field {
    width: 100%;
    padding: 14px; 
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 7px; 
    font-size: 16px; 
}

.forgot-password {
    text-align: right;
    font-size: 14px; 
    color: #db3732; 
    margin-bottom: 20px;
    cursor: pointer;
    text-decoration: underline; 
    font-weight: bold; 
}

.login-button {
    width: 92px; 
    padding: 14px;
    background-color: #db3732;
    color: #fff;
    font-size: 18px; 
    border: none;
    border-radius: 7px;
    cursor: pointer;
    margin-top: 10px;
}

.signup-text {
    font-size: 16px; 
    color: #333;
    margin-top: 20px;
}

.signup-text a {
    color: #db3732; 
    text-decoration: underline; 
    font-weight: bold;
}

.info-section {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f8fb;
}

.info-content {
    text-align: left; 
    max-width: 70%; 
    margin-left: 0;
}

.info-content img {
    width: 80%;
    margin-bottom: 20px;
}

.info-title {
    font-size: 26px; 
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.info-description {
    font-size: 16px; 
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: left; 
}

.info-link {
    font-size: 16px; 
    color: #333; 
    text-decoration: none;
    cursor: pointer;
}
