body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0b1d3a;
    color: #fff;
    background:url("https://images.pexels.com/photos/9606898/pexels-photo-9606898.jpeg") 100% repeat;
    
}

.header {
    /*width: 100%;*/
    padding: 20px;
    text-align: center;
    background-color: #08142a;
    font-size: 24px;
    font-weight: bold;
}

.container {
    display: flex;
    max-width: 1100px;
    padding-top: 40px;
    margin: 40px auto;
    gap: 20px;
    
}

.left {
    flex: 1;
    position: relative;
    background: url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70') center/cover no-repeat;
    border-radius: 10px;
    height: 250px;
    display: flex;
    align-items: center;
    padding: 20px;
}

.left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
}

.left-content {
    position: relative;
    z-index: 1;
}

.left-content p{font-size:16px;line-height:22px;}

.left h2 {
    color:lightblue;
    margin: 0 0 10px;
}

.right {
    flex: 1;
    background: #08142a;
    padding: 30px;
    border-radius: 10px;
}

input::placeholder, textarea::placeholder{
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  letter-spacing:1.5px;
  margin-left:10px;
}

input, textarea {
    width: 100%;
    padding-top: 10px;
    padding-bottom:10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

button {
    width: 100%;
    font-size:18px;
    padding: 10px;
    background: #1e90ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #0d6efd;
}
.url-link { 
    font-size:12px !important;
    color: #1e90ff !important;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding:20px;
        margin-top:10px !important;
    }
}