@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --color--utama: #0033e7;
    --color--secondary: #2196f3;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; }

body{
    padding: 0;
    margin: 0;
    font-family: "Quicksand", serif;
    background: #f5f7f9;
}

.dotop-one{
    position: fixed;
    top: -60px;
    left: -20px;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background: linear-gradient(135deg, var(--color--utama) 0%, var(--color--secondary) 100%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dotop-two{
    position: fixed;
    top: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 100%;
    background: linear-gradient(135deg, var(--color--utama) 0%, var(--color--secondary) 100%);
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.botom-one{
    position: fixed;
    bottom: -60px;
    left: -20px;
    width: 140px;
    height: 140px;
    border-radius: 100%;
    background: linear-gradient(135deg, var(--color--utama) 0%, var(--color--secondary) 100%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.botom-two{
    position: fixed;
    bottom: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 100%;
    background: linear-gradient(135deg, var(--color--utama) 0%, var(--color--secondary) 100%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.container{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 85%;
    background: white;
    padding: 20px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.img-log{
    display: flex;
    justify-content: center;
    margin-top: 6px;
}
.img-log img{
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 18px;
}

.input-box {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.input-box i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 20px;
}
.input-box input {
    width: 100%;
    padding: 12px 10px 12px 40px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    font-family: "Quicksand", serif;
    font-weight: bold;
    background: #f1f1f1;
    border: none;
}
.input-box input:focus {
    border-color: var(--color--secondary);
    background-color: #fff;
    box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
}
.input-box input:focus + i {
    color: var(--color--secondary);
}

button{
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, var(--color--utama) 0%, var(--color--secondary) 100%);
    color: white;
    font-weight: bold;
    font-size: 15px;
    border-radius: 100px;
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.text-ex{
    text-align: center;
    margin-top: 20px;
}
.text-ex p{
    font-size: 13px;
    font-weight: bold;
}
.text-ex a{
    text-decoration: none;
    color: var(--color--utama);
}

.alert {
    padding: 15px;
    background-color: #f44336;
    color: white;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}
