/* public/css/login.css */

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    height: 100vh;
}

a {
    text-decoration: none;
    color: #000 !important;
}

.login-box, .register-box {
    width: 600px !important;
}

.login-container {
    display: flex;
    width: 100%;
    padding:  2rem 0;
}

.login-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-left .overlay {
    padding: 40px;
    text-align: center;
    z-index: 1;
}

.login-left .logo {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0.8;
}

.login-left h1 {
    font-size: 36px;
    margin: 10px 0;
}

.login-left p {
    font-size: 14px;
    line-height: 1.6;
}

.login-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.form-container h2 {
    font-size: 24px;
    color: #9e202a
}

.form-container p {
    font-size: 13px;
    color: #777;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #ccc;
    border-left: 4px solid #9e202a;
    border-radius: 4px;
    font-size: 14px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 10px;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #9e202a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #9e202a;
}

.btn-primary {
    color: #fff;
    background-color: #9e202a !important;
    border-color: #9e202a !important;
    box-shadow: none;
}

.rounded-2 {
    border-radius: 1.2rem !important;
}

.shadow-2 {
    box-shadow: 0 4px 11px -2px rgb(0 0 0 / .5) !important;
}
