﻿
body {
    height: 100%;
    margin: 0;
}

.login-section {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.image-section {
    background: url('../img/users/login-register.jpg') center center no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    color: white;
    text-align: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.image-section .content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
}

.register {
    display: inline-block;
    padding: 6px;
    background-color: #006400;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 40px;
    transition: background-color 0.3s ease;
}

.register:hover {
    background-color: darkgreen;
    text-decoration: none;
    color: white;
}


