body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: rgb(244, 152, 81);
    background: url("assets/boy.svg");
    background-size: cover;
}

.calculator {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 110%;
    box-shadow: 7px 0px 15px #e5d64b, -7px 0px 15px #faf9f9;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
   color: rgb(244, 152, 81);
   width: 200%;
   margin-left: -200px;
   font-size: 50px;
}

.input-group, .output-group {
    margin-bottom: 15px;
}

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

input[type="text"], input[type="number"], select {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    background-color: #f6f8fa;
    color: rgb(244, 152, 81);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    box-shadow: 7px 0px 15px #e5d64b, -7px 0px 15px #e5d64b;
    height:50%;
    width: 50%;
    font-size: 20px;
    font-weight: bolder;
}

.btn:hover {
    background-color: #f7f1f3;
}

#result, #roots {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #e9ecef;
}
