﻿
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.bg-image {
    /*background-image: url('https://standinlove.org/wp-content/uploads/2017/04/diamonds-in-the-rough.jpg');*/
    background-image: url('../image/diamonds-in-the-rough.jpg');
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.content-container {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 1100px;
    display: flex;
    align-items: center;
}

.left-section {
    color: white;
    flex: 1;
    padding: 40px;
}

    .left-section h1 {
        font-size: 48px;
        font-weight: bold;
    }

    .left-section p {
        font-size: 16px;
        margin-bottom: 20px;
    }

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    text-decoration: none;
}

.right-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.form-control {
    border-radius: 5px;
}

.btn-login {
    background: #4DB8D9;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

    .btn-login:hover {
        background: #002636;
        color: white;
    }

.small-text {
    font-size: 12px;
}

