@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Poppins&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

html, body {
		height: 100%;
		margin: 0;
		padding: 0;
	  }
	  
body {
    background-color: #eee;
    font-family: 'Poppins', sans-serif;
    background-size: 100% 100%; /* Lebar 100% dan tinggi 100% tanpa distorsi */
	background-repeat: no-repeat;
	#height: 100vh;
    #background: linear-gradient(to top, #fcf6ca 10%, rgba(93, 42, 141, 0.4) 90%) no-repeat
	
}

.wrapper-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrapper {
	max-width: 500px;
    border-radius: 20px;
    margin: 50px auto;
    padding: 30px 40px;
    box-shadow: 20px 20px 80px rgb(255, 255, 255, 0.75);
	background-color: rgba(255, 255, 255, 0.80); /* rgba(255, 255, 255, 0.25) mewakili warna putih dengan tingkat transparansi sebesar 0.25 (25%) */
}

.h2 {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.9rem;
    font-weight: bold;
    color: #400485;
    font-style: italic
}

.h4 {
    font-family: 'Poppins', sans-serif
}

.input-field {
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #64044b;
    color: #64044b;
	background-color: rgba(255, 255, 255, 0.85);
}

.input-field:hover {
    color: #9b036f;
    border: 1px solid #9b036f
}

input {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    height: 40px;
    padding: 0px 2px;
    font-family: 'Poppins', sans-serif;
}

select {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
	height: 40px;
    padding: 0px 2px;
    font-family: 'Poppins', sans-serif
}
.fa-eye-slash.btn {
    border: none;
    outline: none;
    box-shadow: none
}

a {
    text-decoration: none;
    color: #400485;
    font-weight: 700
}

a:hover {
    text-decoration: none;
    color: #7b4ca0
}

.option {
    position: relative;
    padding-left: 30px;
    cursor: pointer
}

.option label.text-muted {
    display: block;
    cursor: pointer
}

.option input {
    display: none
}

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer
}

.option input:checked~.checkmark:after {
    display: block
}

.option .checkmark:after {
    content: "";
    width: 13px;
    height: 13px;
    display: block;
    background: #400485;
    position: absolute;
    top: 48%;
    left: 53%;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 300ms ease-in-out 0s
}

.option input[type="radio"]:checked~.checkmark {
    background: #fff;
    transition: 300ms ease-in-out 0s;
    border: 1px solid #400485
}

.option input[type="radio"]:checked~.checkmark:after {
    transform: translate(-50%, -50%) scale(1)
}

.btn.btn-block {
    border-radius: 20px;
    background-color: #52044f;
    color: #fff 
}

.btn.btn-block:hover {
    background-color: #6e034f
}

.div-back-custom {
    border-radius: 20px;
    background-color: #6e034f;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-back-custom:hover {
    background-color: #981255;
}

@media(max-width: 575px) {
    .wrapper {
        margin: 10px
    }
}

@media(max-width:424px) {
    .wrapper {
        padding: 30px 10px;
        margin: 5px
    }

    .option {
        position: relative;
        padding-left: 22px
    }

    .option label.text-muted {
        font-size: 0.95rem
    }

    .checkmark {
        position: absolute;
        top: 2px
    }

    .option .checkmark:after {
        top: 50%
    }

    #forgot {
        font-size: 0.95rem
    }
}


	  
