body {
    /* Set the background image */
    background-image: url('bg.jpg');
    
    /* Specify the background image's behavior */
    background-size: cover; /* Cover the entire background */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
}
.container {
	background:white;
    max-width: 85%;
    margin: 45px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"],
textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
	 margin-top: 10px;
}

button {
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#response {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#requesBodyContainer{width:75%; background:yellow; margin:20px 20px; padding:10px 20px;}
