* {
    margin: 0;
    padding: 0;
}
html, body {
    min-height: 100dvh;
    font-family: 'Roboto Mono', monospace;
}
/* body { */
    
/* } */
.heading {
    width: 100%;
    height: 90px;
    background-color: #9F7E69;
    color: #FFEEE2;
    font-size: 1.3rem;
    border-bottom: 5px solid #6D5647;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    text-align: center;
}

.container {
    width: 100%;
    height: 85vh;
    background-color: #F7FFE0;
    flex-direction: column;
    gap: 50px;
}
.container-para {
    width: 100%;
    text-align: center;
    margin-top: 150px;
}

.container-para p{
    font-weight: bold;
    font-size: 1.4rem;
}

.main-div {
    height: 400px;
    width: 600px;
    background-color: #E2D5B4;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.main-together {
    gap: 2rem;
}

/* .main-left {
    padding-left: 50px; 
} */

/* .main-right {
     padding-right: 30px; 
} */

.main-p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.main-div input{
    width: 12vw;
    height: 4vh;
    padding: 0 15px;
    border: 2px solid #C4B694;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    color: #4A4435;
    transition: all 0.3s ease;
    outline: none;
}
.main-div input:focus {
    border-color: #8B7E5D;
    box-shadow: 0 0 8px rgba(139, 126, 93, 0.4);
    background-color: #ffffff;
}

.material-symbols-outlined {
    font-size: 2rem;
}

.image {
    width: 50px;
    height: 60px;
    position: relative;
    left: 1.5px;
}

.currency-together {
    width: 80px;
    height: 40px;
    border: 0 2px 2px 0 solid #C4B694;
    border-radius: 0 8px 8px 0;
    background-color: #ffffff;
    color: #4A4435;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 5px;
    appearance: none;
    -webkit-appearance: none;
}
.currency-together:hover {
    background-color: #F7F3E8;
    border-color: #8B7E5D;
}
.currency-together:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(139, 126, 93, 0.3);
}

.btn-div {
    position: relative;
    bottom: 70px;
    text-align: center;
}

.cbutton {
    height: 5vh;
    width: 6vw;
    font-size: auto;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    background-color: #4A4435;
    color: #E2D5B4;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cbutton:hover {
    background-color: #635b47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.cbutton:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer {
    width: 100%;
    height: 100%;
    background-color: #846956;
    font-size: 1rem;
    color: #F2EFC7;
    flex-direction: column;
    border-top: 5px solid #6D5647;
    box-shadow: 0px -7px 15px rgba(0, 0, 0, 0.3);
    margin-top: 150px;
    /* position: relative;
    bottom: 0; */
}
.footer span {
    font-weight: bolder;
}
.footer p{
    padding: 3px;
    font-weight: 200;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.message {
    width: 250px; 
    max-width: 90vw; 
    min-height: 50px; 
    height: auto; 
    margin-top: 130px;

    background-color: #4a4435b0;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

.note-icon {
    position: absolute;
    top: 138px;
    right: 15px;
    cursor: pointer;
}

.note-text {
    width: 34vw;
    height: 26vh;
    background-color: #6D5647;
    color: #F7FFE0;
    top: 170px;
    right: 40px;
    position: absolute;
    text-align: center;
    font-size: 1rem;
    border-radius: 20px;
}
