﻿body {
    background: url('https://shanvillasbangkok.com/wp-content/uploads/2023/10/Four_Bedroom_Pool_Terrace_01.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.display-center {
    text-align: center;
}

.login-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    color: white;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 20px;
    }

.input-group {
    margin-left: calc(var(--bs-border-width) * -1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-text {
    background: transparent;
    border: none;
    color: white;
    display: flex;
    align-items: center;
}

.shan-textbox {
    width: 100%;
    padding: 10px;
    border: 2px solid rgb(40 34 28);
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgb(42 36 31);
    transition: box-shadow 0.3s;
    box-sizing: border-box;
}


/*.form-control {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }*/

.red-color {
    color: red;
}

.login-button {
    background: linear-gradient(to right, rgb(200, 230, 250), rgb(230, 240, 250));
    padding: 10px 20px;
    font-size: 1rem;
    color: #5a4230;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s;
}

    .login-button:hover {
        transform: scale(1.1);
        filter: brightness(1.1);
    }
