:root {
    --main-color: #3e2723;
    --main-padding: 80px;
    --main-border-radius: 20px;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(223, 220, 217, 255);
    background-image: url('                      view-room-interior-with-furniture-copy-space.jpg');
  

    /* background-image: url('                      back2.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.signUp-container,
.login-container {
    background-color:  rgb(255 252 247 / 79%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 50px;
    border-radius: 20px;
    margin-left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 300px; 
    height: 420px; 
}

.signUp-container {
    width: 350px; 
    height: 570px; 
}

@media screen and (max-width: 767px) {
    body {
        background-image: none; /* Remove background image on mobile screens */
    }

    .signUp-container,
    .login-container {
        background-image: none; /* Remove background image on mobile screens */
        background-color: #fff; /* Set background color for mobile screens */
    }

    .login-container,
    .signUp-container {
        width: 100%; /* Make containers full width on mobile screens */
        height: auto; /* Auto height on mobile screens */
        margin-left: 0; /* Remove margin on mobile screens */
    }
}

h1 {
    text-align: center;
    color: #6b5138;
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #513923;
    font-weight: 500;
    font-size: 15px;
}

input {
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 20px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #6b5138;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    border-radius: 80px;
    transition: transform 0.6s;
    margin-top: 20px;
}
button a{
    text-decoration: none;
    color: white;
}

button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
