/* Basic page styling */
body {
    /* background: linear-gradient(135deg, #ff5f6d, #ffc371, #6e7fdb, #ff8c00); */
    background: linear-gradient(120deg, #F2F9FF,#F6D6D6,#F2F9FF);


    /* background: #B17F59; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow-x: hidden;  /* Prevent horizontal scrolling */
}

/* Adjust container width using Bootstrap utilities */
.container {
    max-width: 600px;  /* Optimal width */
    padding: 10px;
    border-radius: 10px;
    color: black;
    
}

/* Heading color */
h1 {
    color: black;
}

/* Customize input box */
input {
    border-radius: 5px;
}

.input-group-text {
    background-color: #f8f9fa;
    border-left: none;
    cursor: pointer;
}

.form-control:focus {
    box-shadow: none;
}
