:root {
    --primary-color: #007bff;
    --secondary-color: #d1d1d1;
    --font-family: "Inter", sans-serif;
}

::placeholder {
    color: #F2F2F2; /* Ubah warna placeholder */
    opacity: 0.5;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: 1rem;
    background-color: #FFFFFF;
    background-image: url('../../images/loginpage/circle1.svg'), url('../../images/loginpage/circle2.svg');
    background-position: top right, bottom left;
    background-repeat: no-repeat, no-repeat;
    background-size: 500px 500px, 600px 600px;
}

.body {
    padding: 2rem 7rem;
}

.img-header {
    height: 50px;
}

.img-header2 {
    margin-top: 1rem;
    height: 60px;
}

.vh-80 {
    height: 80vh !important;
}



.form-group label {
    margin-bottom: 0.3rem;
}

.input-group-text, .toggle-password {
    background-color: #fff;
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    padding: 12.7px;
}

.input-group-text{
    border-radius: 10px 0 0 10px;
}

.input-group-prepend .input-group-text {
    border-right: none;
}

.form-control {
    border: 1px solid var(--secondary-color);
    box-shadow: none;
    height: 45px;
    font-size: 0.8rem;
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-email, .form-password {
    border-radius: 10px;
    border-left: none !important
}

.form-password {
    border-right: none !important;
}

.toggle-password {
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    padding-top: 13px;
    padding-bottom: 14px;
}

#circle-container {
    width: 350px;
    height: 350px;
    position: relative;
    border-radius: 50%;
    /* overflow: hidden; */
    background: white;
}

#circle-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(360deg, #FFFFFF 31.67%, #4680FF 80.03%);
    mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 0);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 0);
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    box-shadow: 0px 0px 4px 0px #00000040;
    background-color: #FFF;
    border-radius: 50%;
    padding: 20px;
}

.circle-center-logo {
    width: 200px;
    height: 200px;  
}

.circle-item {
    width: 100px;
    height: 100px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.circle-item img {
    width: 60px;
    height: 60px;
    background-color: #E9EEFF;
    padding:10px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.5s, filter 0.5s ease-in-out;
    transform-origin: center center;
}
.circle-item img:hover {
    transform: scale(1.3);
}

/* .circle-item img.active {
    transform: scale(1.2);
} */

.circle-item p{
    margin-top:5px;
    font-size: 0.7rem;
}

.whiz-matrix {
    top: -12%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.whiz-matrix img{
    padding:13px;
}
.whiz-spy {
    top: 15%;
    right: -5%;
    transform: translate(50%, -50%);
}

.whiz-temp {
    top: 55%;
    right: -20%;
    transform: translate(50%, -50%);
}

.whiz-mail {
    top: 55%;
    left: -20%;
    transform: translate(-50%, -50%);
}

.whiz-mail img{
    padding:13px;
}

.whiz-cloud {
    top: 15%;
    left: -10%;
    transform: translate(-50%, -50%);
}


.login-form h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.login-form p {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.8rem;
}

.login-form form {
    display: flex;
    flex-direction: column;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

.login-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.login-form button:hover {
    background-color: #0056b3;
}

.circle-submenu {
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.circle-submenu img {
    width: 55px;
    height: 55px;
    background-color: #E9EEFF;
    padding:13px;
    border-radius: 50%;
}

.circle-submenu p{
    margin-top:4px;
    font-size:0.8rem;
}

.circle-submenu.active p{
   font-weight: bold;
   color: #6387ff;
}

@media only screen and (max-width: 1280px) {
    .body {
        padding: 1rem 4rem;
    }

    .img-header {
        height: 40px;
    }
    
    .img-header2 {
        margin-top: 1rem;
        height: 50px;
    }

    .vh-80 {
        height: 70vh !important;
        margin-top: 4rem;
    }

    .login-form p {
        margin-bottom: 10px;
        color: #666;
        font-size: 0.7rem;
    }

    .login-form label {
        font-size: 0.7rem;
    }

    .login-form input {
        padding: 6px;
    }
}