body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* padding: 20px; */
    box-sizing: border-box;
    width: 100%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    box-sizing: border-box;
}

.form-container {
    width: 100%;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #060308;
    color: white;
    background-image: linear-gradient(#2DA7E3, #0270BD);

    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

button:hover {
    background-color:;
    background-image: linear-gradient(#B5DF28, #5BB325);
}

p {
    margin-top: 15px;
    text-align: center;
}

p a {
    color: #4CAF50;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
        padding: 10px;
    }
    h1 {
        font-size: 20px;
    }
    button {
        font-size: 14px;
    }
    .input-group input {
        font-size: 14px;
    }
}

#form{
    box-shadow: 0px 7px 14px 0px #00000026;
}

.info{
    position: absolute;
    right: 10px;
    top: 15px;
}
.w-100 {
    height: 100%;
    width: 100% !important;
}



/* Media screening.... */

@media screen and (max-width: 480px) {
   .phone{
    display: none;
   }
  }

  