/* font awesome cdn link */
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css);

/* google fonts cdn link */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* background color start */
.wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(45deg, #F17C58, #E94584, #24AADB, #27DBB1, #FFDC18, #FF3706);
    background-size: 600% 100%;
    animation: gradient 16s linear infinite;
    animation-direction: alternate;
}

@keyframes gradient {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 100%
    }
}

/* background color end */

* {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    transition: .2s linear;
}

.container {
    min-height: 100vh;
    /* background-color: red; */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: 80px;

}

.container .row {
    width: 800px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px;
    backdrop-filter: blur(8px);
    background: 1px solid rgba(255, 255, 255, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);

}

.container .row .box {
    flex: 1 1 300px;
}

.container .row .output {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    gap: 15px;
    padding: 30px 20px;
    /* border: 1px solid; */
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    border-radius: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, .2);

}
.container .row .output p{
    font-size: 20px;
    color: #334;
}

.container .row .output div{
    font-size: 25px;
    color: #079;
}
.container .row .form .input{
    width: 100%;
    background: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, .2);
     border:1px solid rgba(0, 0, 0, .2);
     font-size: 20px;
     color:#334;
     padding:10px 15px;
     margin-top:10px;
     margin-bottom: 20px;

}
.container .row .form .input::placeholder{
    color:#555;
    margin-bottom: 20px;
}
.container .row .form .tenure input[type="radio"]{
    display:none;
}

.container .row .form .tenure {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}
.container .row .form .tenure label{
    font-size: 20px;
    border-radius:10px;
    flex:1;
    background-color: rgba(0, 0, 0, .2);
    border :1px solid rgba(0, 0, 0, .2);
    text-align: center;
    color:#334;
    padding: 10px;
    cursor: pointer;
}
.container .row .form .tenure input[type="radio"]:checked + label{
    background:rgba(0, 100, 200, 0.46);
    color:antiquewhite;
}
.container .row .form .calculate{
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    box-shadow:0 5px 15px rgba(0, 0, 0, .1);
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(0, 0, 0, .3);
    font-size: 20px;
    margin-top:20px;
    cursor: pointer;
    
}
.container .row .form .calculate:hover{
    background-color: rgba(0, 0, 200, .3);
    box-shadow: 1 5px rgba(0, 0, 200, .3);
    color:#fff;
}
