body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f6f8fa;
    background-image: url("../../Images/General/purple\ gradient\ background.jpeg");
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    display: flex;
    width: 1000px;
    height: 650px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.left-panel {
    flex: 1;
    background-color: #0d1117;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
.wallpaper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.wallpaper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.right-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}
h1 {
    font-size: 24px;
    font-weight: 100;
    margin-bottom: 10px;
}
h2 {
    font-size: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #81589a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 10px;
}
.btn:hover {
    background-color: #aaa;
}
.btn_signin {
    display: inline-block;
    padding: 10px 20px;
    background-color: #81589a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.forgot-password {
    display: inline-block;
    margin-top: 5px;
    color: #0969da;
    text-decoration: none;
    font-size: 14px;
}
.register-container {
    margin-top: 20px;
    font-size: 14px; 
}
.register-link {
    color: #0969da;
    text-decoration: none;
}
.error-message {
    color: #d73a49;
    margin-top: 10px;
}
.role-buttons {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}