/* custom-style.css */

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

.container {
    display: flex;
    width: 100%;
}

.left-side {
    background: #D8A97A;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo {
    max-width: 50%;
    height: auto;
}

.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

h1 {
    color: #D8A97A;
    font-size: 2em;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #431E12;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #D8A97A;
    border-radius: 5px;
}
input[type="text"]:focus, input[type="password"]:focus {
  border-color: #431E12; 
  outline: none; 
  box-shadow: 0 0 0 2px rgba(38, 143, 255, 0.25); 
}
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.options label {
    display: flex;
    align-items: center;
}

.options input {
    margin-right: 5px;
}

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

.btn {
    background-color: #431E12;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #D8A97A;
}

.register {
    margin-top: 20px;
    color: #555;
}

.register a {
    color: #D8A97A;
    text-decoration: none;
}
