* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #e9ecef; /* slightly darker body background to make wrapper pop */
    display: flex;
    justify-content: center;
}

.mobile-wrapper {
    width: 100%;
    max-width: 480px;
    background-color: #fff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background-color: #091a9b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
}

.flame-icon {
    color: #4dc4ff;
    font-size: 24px;
    transform: skewX(-10deg);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-selector {
    background-color: #f0f0f0;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.auth-buttons {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 4px;
    height: 32px;
    overflow: hidden;
}

.auth-buttons button {
    background-color: transparent;
    color: #333;
    border: none;
    font-size: 11px;
    font-weight: 700;
    padding: 0 12px;
    height: 100%;
    cursor: pointer;
}

.btn-signup {
    border-right: 1px solid #ddd !important;
}

.auth-buttons button:hover {
    background-color: #f0f0f0;
}

/* Promo Section */
.promo-section {
    background-color: #0619e0; /* vibrant blue */
    padding: 24px 16px;
}

.promo-box {
    background-color: #0a1147; /* dark navy */
    border-radius: 12px;
    padding: 20px;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.promo-box h2 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 20px;
}

.features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 13px;
    color: #a0a6d6;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-blue {
    color: #4f73ff;
    font-size: 16px;
}

.icon-strike {
    position: relative;
    display: inline-block;
}

.icon-strike i {
    color: #4f73ff;
    font-size: 16px;
}

.strike {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1.5px;
    background-color: #4f73ff;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-radius: 2px;
}

.pricing-card {
    background-color: #0a1147;
    border: 1px solid #149c4f;
    border-radius: 6px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.active-dot {
    color: #0ed65a;
    font-size: 12px;
}

.price-text {
    font-size: 14px;
    font-weight: 600;
}

.badge {
    background-color: rgba(14, 214, 90, 0.15);
    color: #0ed65a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.download-faster-btn {
    width: 100%;
    background-color: #0075ff; /* Match download button roughly */
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Download Section */
.download-section {
    padding: 24px 16px;
    background-color: white;
    flex-grow: 1;
}

.download-card {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.download-btn-container {
    background-color: #0075ff; /* primary blue */
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: white;
    cursor: pointer;
}

.download-faster-strip {
    background-color: #333333;
    padding: 10px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.download-faster-strip span {
    color: #cccccc;
    font-size: 11px;
}

.btn-fast {
    background-color: #0075ff;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.file-icon {
    width: 40px;
    height: 48px;
    background-color: #fff;
    position: relative;
    margin-right: 16px;
    border-radius: 2px;
    border-top-right-radius: 10px; /* For folded corner effect */
    overflow: hidden;
    flex-shrink: 0;
}

/* The small fold on top right */
.file-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 10px 10px 0;
    border-style: solid;
    border-color: #0075ff #0075ff #f0f0f0 #f0f0f0;
    z-index: 2;
}

.file-icon-pink-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 18px;
    background-color: #ff5274; /* pink part */
}

.file-icon i {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: #e0e0e0;
    font-size: 16px;
}

.file-details {
    flex-grow: 1;
}

.file-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.file-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
}

.download-icon {
    font-size: 18px;
}

.disclaimer {
    font-size: 11px;
    color: #777;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 10px;
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.action-btn {
    background-color: #f7f7f7;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #555;
    font-size: 12px;
    cursor: pointer;
}

.action-btn i {
    font-size: 20px;
    color: #888;
}

/* Footer */
.footer {
    background-color: #f7f7f7;
    padding: 24px 16px;
    font-size: 12px;
    color: #777;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-links-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer a {
    color: #777;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.modal-logo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.modal-box {
    background-color: white;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.modal-title {
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    color: #444;
    padding: 35px 20px 25px 20px;
    margin: 0;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 30px 30px 30px;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 16px;
    background-color: #f2f2f2;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: #e8e8e8;
}

.social-icon {
    width: 18px;
    height: 18px;
    position: absolute;
    left: 16px;
}

.login-btn span {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-left: 22px;
}

.modal-footer-text {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #f0f0f0;
}

.modal-footer-text a {
    color: #0075ff;
    text-decoration: none;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

.container-box {
    background: #ECEFF6;
    max-width: 330px;
    height: auto;
    position: relative;
    margin: 50px auto;
    margin-top: 1.9%;
    text-align: center;
    font-family: system-ui;
    color: #000;
    border-radius: 10px;
}

.header-container {
    background: #3b5998;
	width: 100%;
	height: auto;
	padding: 8px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.header-container img {
    width: 115px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.body-container {
    width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.body-container .toast {
    display: none;
    left: -15px;
    position: relative;
    width: 330px;
    padding: 5px;
    background: red;
    color:#fff;
    font-size: 13px;
    font-family: system-ui;
    box-sizing: content-box !important;
}

.body-container img {
    width: 60px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    display: block;
}

.text-body-container {
    width: 270px;
    height: auto;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 17px;
    padding: 8px;
    color: #90949c;
    font-size: 16px;
    font-family: system-ui;
    text-align: center;
    display: block;
}

.form-container {
    box-sizing: content-box !important;
}

.form-container input[type="text"],.form-container input[type="password"]{
    width: 100%;
	height: auto;
	padding: 12px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Lato',sans-serif;
	border: 1px solid #bdbebf;
	cursor: pointer;
	outline: none;
    box-sizing: content-box !important;
}

.form-container input[type="text"] {
    margin: 0;
    padding-bottom: 13px;
	border-bottom: none;
	border-radius: 4px 4px 0 0;
	box-shadow: 0 -1px 0 #E0E0E0 inset,0 0px 0px rgba(0,0,0,0.23) inset;
}
.form-container input[type="password"] {
    margin: 0;
	border-top: none;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 -0px 0 rgba(0,0,0,0.23) inset,0 0px 0px rgba(255,255,255,0.1);
}
.btn-container {
    background: #1778f2;
	width: 100%;
	height: auto;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	color: #fff;
	font-size: 14px;
	font-family: system-ui;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 0px rgba(0, 0, 0, 0.3);
	border: 1px solid #3578e5;
	border-radius: 5px;
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
	outline: none;
	display: block;
}

.txt-buat-akun {
    width: 100%;
    height: auto;
    padding: 5px;
    color: #3b5998;
    font-size: 13.5px;
    font-family: system-ui;
    text-align: center;
}

.txt-tidak-sekarang {
    width: 100%;
    height: auto;
    padding: 5px;
    color: #3b5998;
    font-size: 13.5px;
    font-family: Roboto;
    text-align: center;
}

.txt-lupa-password {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    padding: 5px;
    color: #7596c8;
    font-size: 13.5px;
    font-family: system-ui;
    text-align: center;
}

.isi-bahasa {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.nama-bahasa {
    width: 40%;
    height: auto;
    margin: 5px;
    margin-bottom: 0px;
    color: #3b5998;
    font-size: 12px;
    font-family: system-ui;
    text-align: center;
    display: inline-block;
}

.nama-bahasa i {
    width: 23px;
    padding: 4px;
    color: #90949c;
    border: 1px solid #3b5998;
    border-radius: 3px;
}

.bahasa-aktif {
    color: #90949c;
    font-weight: bold;
}

.footer-container {
    width: 40%;
    height: auto;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    color: #90949c;
    font-size: 12px;
    font-family: system-ui;
    text-align: center;
    display: block;
}

.container-box-vk {
    background:#fff;
	max-width:330px;
	height:auto;
	position:relative;
	margin:50px auto;
	margin-top:10%;
	text-align:center;
	font-family:'Teko';
	color:#000;
	border-radius:10px;
}

.close-alex-vk {
    width: 25px;
    height: 25px;
    background: #000;
    position: relative;
    color: #fff;
    border-radius: 100%;
    float: right;
    margin-right: -10px;
    margin-top: -10px;
    z-index: 9999;
}

.close-alex-fb {
    width: 25px;
    height: 25px;
    background: #000;
    position: relative;
    color: #fff;
    border-radius: 100%;
    float: right;
    margin-right: -15px;
    margin-top: -60px;
    z-index: 9999;
    font-size: 13px;
    padding-top: 4px;
    padding-left: -10px;
}

.kagetvk {
    display: none;
    background: red;
    padding: 5px;
    color: #fff;
    font-size: 14px;
}

.img-logvk {
    width: 50px;
    
    border-radius: 10px;
    display: block;
    margin: auto;
    text-align: center;
}

.close-alex-vk {
    width: 25px;
    height: 25px;
    background: #000;
    position: relative;
    color: #fff;
    border-radius: 100%;
    float: right;
    margin-right: -10px;
    margin-top: -10px;
    z-index: 9999;
}

.isi-vikontakte .ucapan-vk {
    display: block;
    margin: 10px auto;
    font-size:20px;
}

.form-login-vk {
    display: block;
    margin: 14px auto;
}

.form-login-vk input {
    width: 80%;
    display: block;
    margin: auto;
    padding: 7px;
    font-size: 12px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    outline: none;
}

.form-login-vk input:hover {
    border-bottom: 1px solid #616161;
}

.btn-login-vk {
    display: inline-block; 
    margin: auto 5px;
    margin-bottom: 20px;
    width: 130px;
    border: none;
    background: #4C75A3; 
    color: #fff;
    border-radius: 48px;
    padding: 7px;
}

.cancel {
    background: #000 !important;
    color: #fff !important;
}

.popup-box-login-gg {
	background: #fff;
	max-width: 330px;
	height: auto;
	position: relative;
	margin: 50px auto;
	margin-top: 10%;
	border-radius: 5px;
}

.form__div {
	position: relative;
	height: 50px;
    display: block;
    margin: auto;
    width: 100%;
    margin-bottom: 20px;    
    margin-left: 10px;
}

.showpass {
	position: relative;
	height: 50px;
	margin-top: 0px;
}

.showpass label {
	position: relative;
	margin-top: 2px;
	margin-left: 4px;
	font-size: 11px;
	color: #000;
}

.form__input {
	padding-left: 13px;
	position: absolute;
	top: -1;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #AFB0AF;
	border-radius: 3px;
	color: #454746;
	outline: none;
	background: none;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	z-index: 1;
	margin-left: -10px;
	padding-left: 12px;
}

.form__label {
	position: absolute;
	left: 5px;
	top: 1rem;
	padding: 0 5px;
	background-color: #fff;
	color: #454746;
	transition: 0.3s;
	font-size: 11px;
	font-weight: 400;
}

/*Input focus move up label*/
.form__input:focus+.form__label {
	top: -0.4rem;
	left: 0.1rem;
	color: #0B57CF;
	font-size: 13px;
	font-weight: 400;
	z-index: 10;
}

/*Input focus sticky top label*/
.form__input:not(:placeholder-shown).form__input:not(:focus)+.form__label {
	top: -0.4rem;
	left: 0.1rem;
	z-index: 10;
	font-weight: 400;
	font-size: 13px;
}

/*Input focus*/
.form__input:focus {
	border: 2px solid #0B57CF;
	font-size: 16px;
}

.header-gg {
	background: #fff;
	padding: 8px;
	border-radius: 5px 5px 0px 0px;
	border-bottom: 1px solid #E5EAED;
	margin-bottom: 20px;
	position: relative;
}

.header-gg img {
	width: 20px;
	height: 20px;
	float: left;
	display: block;
	margin-top: 1px;
	margin-left: 2px;
	margin-right: -10px;
}

.header-gg-text {
	color: #000;
	font-size: 15px;
	font-weight: 500;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	margin-top: 2px;
	padding-left: -2px;
}

.txt-login-gg {
	padding-top: 1px;
	padding-left: 2px;
	color: #000;
	text-align: left;
	font-size: 25px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 3%;
}

.txt-login-ggs {
	padding-top: 1px;
	padding-left: 2px;
	color: #000;
	text-align: left;
	font-size: 15px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 10%;
}

.content-box-gg {
	width: 90%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 25px;
	display: block;
}

.content-box-gg-txt {
	width: auto;
	height: auto;
	display: inline-block;
	margin-left: auto;
	margin-right: 10px;
	padding-bottom: 10px;
	display: block;
}

.content-box-gg-txt img {
	width: 55px;
	border: none;
	border-radius: 12px;
	margin-top: 10px;
	margin-left: 5px;
	margin-right: 10px;
	float: left;
}

.content-box-gg p {
	background: #666666;
	height: 35px;
	border-radius: 10px;
	color: #fff;
	. padding-top: 5px;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	float: center;
	text-align: center;
}

.content-box-gg label {
	color: #000;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	float: left;
	text-shadow: none;
}

.content-box-gg label a {
	color: #1da1f2;
}

.content-box-gg-txt-title {
	color: #6A747E;
	font-size: 16px;
	padding-top: 11px;
	padding-bottom: 7px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	text-align: left;
}

.content-box-gg-txt-det {
	width: auto;
	height: auto;
	padding-top: 2px;
	padding-bottom: 3px;
	color: #8799A3;
	font-size: 11px;
	font-family: 'Open Sans', sans-serif;
	text-align: left;
	text-shadow: none;
}

.alert-gg-failed {
	background: none;
	width: auto;
	height: 34px;
	padding: 10px 0 10px 0;
	padding-top: 0px;
	margin-top: -10px;
	margin-bottom: 0px;
	position: relative;
	display: none;
	border-radius: 5px;
}

.alert-gg {
	width: auto;
	height: auto;
	padding-top: 0px;
	text-align: left;
	border-radius: 5px;
	color: #B3261D;
	font-size: 12px;
	float: left;
	font-weight: 400;
	margin-bottom: -10px;
	font-family: 'Open Sans', sans-serif;
}

.alert-gg img {
	background: #fff;
	width: 24px;
	float: left; 
	margin-right: 1px;
	margin-left: 2px;
	border-radius: 5px;
	margin-top: -5px;
	display: inline-block;
}

.alert-gg-faileds {
	background: #62656C;
	width: auto;
	height: auto;
	padding: 5px;
	margin-bottom: 10px;
	position: relative;
	display: none;
	border-radius: 5px;
}

.alert-ggs {
	width: auto;
	height: auto;
	padding: 0px;
	text-align: left;
	border-radius: 5px;
	color: #fff;
	font-size: 13px;
	float: center;
	margin-bottom: -10px;
	font-family: 'Open Sans', sans-serif;
}

.alert-ggs img {
	background: #fff;
	width: 24px;
	float: left;
	margin-right: 1px;
	margin-left: 2px;
	margin-top: 3px;
	border-radius: 5px;
	display: inline-block;
}

.nonbutton {
	background: #0B57CF;
	width: 30%;
	height: auto;
	padding: 10px;
	margin-top: -5px;
	margin-left: -1px;
	margin-bottom: 50px;
	padding: 14px;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	border: none;
	border-radius: 10px;
	outline: none;
	letter-spacing: 1;
	float: right;
}

.content-box-gg-txt-footer {
	width: auto;
	height: auto;
	display: inline-block;
	color: #454746;
	font-size: 12px;
	font-family: 'Open Sans', sans-serif;
	margin-right: 10px;
	text-align: left;
	padding-bottom: 10px;
	display: block;
}

.content-box-gg-txt-footer a {
	color: #1A62D1;
}

.content-box-gg-txt-footers {
	width: auto;
	height: auto;
	display: inline-block;
	color: #848586;
	font-size: 10.5px;
	font-family: 'Open Sans', sans-serif;
	margin-right: 10px;
	text-align: left;
	padding-bottom: 10px;
	display: block;
}

.content-box-gg-txt-footers a {
	color: #3D86BD;
}

.content-box-gg-txt-footer-left {
	width: auto;
	height: auto;
	padding-right: 25%;
	display: inline-block;
	color: #000;
	font-size: 9px;
	font-weight: bold;
	font-family: 'Open Sans', sans-serif;
	margin-right: 10px;
	text-align: left;
	padding-bottom: 10px;
	display: block;
}

.img {
	width: 55px;
	float: left;
	display: inline-block;
}

.content-box-gg-txt label {
	color: #90949c;
	font-size: 16px;
	font-family: Roboto, sans-serif;
	text-align: left;
	display: inline-block;
}

.form-group-gg {
	width: 100%;
	max-width: 100%;
	margin-left: -1px;
	margin-right: auto;
	padding: 10px 0;
	position: relative;
	display: block;
}

.form-group-gg input {
	background: transparent;
	width: 100%;
	padding: 16px;
	padding-top: 25px;
	padding-bottom: 5px;
	padding-left: 7px;
	color: #000;
	font-size: 17px;
	font-family: 'Open Sans', sans-serif;
	border: 1px solid #657786;
	border-radius: 3.5px;
	display: block;
}

.form-group-gg label {
	color: #6E767D;
	font-size: 17px;
	font-weight: 100;
	font-family: 'Open Sans', sans-serif;
	text-align: right;
	top: 0;
	left: 10.5px;
	position: absolute;
	pointer-events: none;
	transform: translateY(26px);
	transition: all 0.2s ease-in-out;
}

.form-group-gg input:valid,
.form-group-gg input:focus {
	border: 2px solid #1da1f2;
	outline: none;
}

.form-group-gg input:valid+label,
.form-group-gg input:focus+label {
	color: #1da1f2;
	font-size: 12px;
	top: 15px;
	bottom: 20px;
	transform: translateY(0);
}

.form-group-sohi {
	width: 50px;
	height: 73%;
	margin-left: 88%;
	position: absolute;
	z-index: 9999999;
	cursor: pointer;
}

.form-group-sohi img {
	width: 23px;
	opacity: 0.6;
	margin-top: 16px;
}

input {
	background: #fff;
}

#form {
	width: 40vw;
	margin: 0 auto;
	margin-top: 50px;
}

.input-box.active-grey {
	.input-1 {
		border: 1px solid #dadce0;
	}

	.input-label {
		color: #80868b;
		top: -8px;
		background: #fff;
		font-size: 11px;
		transition: 250ms;

		svg {
			position: relative;
			width: 11px;
			height: 11px;
			top: 2px;
			transition: 250ms;
		}
	}
}

.input-box {
	position: relative;
	margin: 10px 0;

	.input-label {
		position: absolute;
		color: #80868b;
		font-size: 16px;
		font-weight: 400;
		max-width: calc(100% - (2 * 8px));
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		left: 8px;
		top: 13px;
		padding: 0 8px;
		transition: 250ms;
		user-select: none;
		pointer-events: none;

		svg {
			position: relative;
			width: 15px;
			height: 15px;
			top: 2px;
			transition: 250ms;
		}
	}

	.input-1 {
		box-sizing: border-box;
		height: 50px;
		width: 100%;
		border-radius: 4px;
		color: #202124;
		border: 1px solid #dadce0;
		padding: 13px 15px;
		transition: 250ms;

		&:focus {
			outline: none;
			border: 2px solid #1a73e8;
			transition: 250ms;
		}
	}
}

.input-box.error {
	.input-label {
		color: #f44336;
		top: -8px;
		background: #fff;
		font-size: 11px;
		transition: 250ms;
	}

	.input-1 {
		border: 2px solid #f44336;
	}
}

.input-box.focus,
.input-box.active {
	.input-label {
		color: #1a73e8;
		top: -8px;
		background: #fff;
		font-size: 11px;
		transition: 250ms;

		svg {
			position: relative;
			width: 11px;
			height: 11px;
			top: 2px;
			transition: 250ms;
		}
	}
}

.input-box.active {
	.input-1 {
		border: 2px solid #1a73e8;
	}
}

.pull-right {
	float: right;
}

.clear {
	clear: both;
}

.btn-forgot-google {
	background: #fff;
	width: auto;
	height: auto;
	margin: 0px;
	margin-top: 15px;
	padding: 10px;
	padding-left: 0;
	color: #1a73e8;
	font-size: 14.5px;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	letter-spacing: .25px;
	text-align: left;
	border: none;
	outline: none;
	float: left;
}

.notify-google {
	width: 100%;
	height: auto;
	color: gray;
	font-size: 14px;
	font-family: arial, sans-serif;
	font-weight: normal;
	text-align: left;
	margin-top: 15%;
	margin-bottom: 5%;
}

.notify-google span {
	color: #1a73e8;
	font-weight: inherit;
}

.btn-create-google {
	background: #fff;
	width: auto;
	height: auto;
	margin: 0px;
	padding: 5px;
	padding-left: 0;
	color: #1a73e8;
	font-size: 14.5px;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	letter-spacing: .25px;
	text-align: left;
	border: none;
	outline: none;
	float: left;
}

.btn-login-google {
	background: #1a73e8;
	width: 30%;
	height: auto;
	margin: 0px;
	padding: 10px;
	color: #fff;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	letter-spacing: .25px;
	text-align: center;
	border: none;
	border-radius: 5px;
	outline: none;
	float: right;
	margin-top: -8px;
}

:root {
  /* Warna resmi Google Material Design */
  --google-blue: #4285F4;
  --google-red: #EA4335;
  --google-yellow: #FBBC05;
  --google-green: #34A853;

  --dot-color: #1778f2; /* Warna titik */
  --dot-size: 10px;   /* Ukuran satu titik */
  --spacing: 10px;    /* Jarak antar titik */
  --animation-speed: 1.2s;
  
  --white: #ffffff;
  --width: 45px; /* Ukuran loader diperbesar */
}

.loader {
  position: relative;
  margin: 0 auto;
  width: var(--width);
}

.loader::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.circular {
  animation: rotate 1.4s linear infinite; /* Kecepatan putar disesuaikan ala Google */
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.4s ease-in-out infinite, color 5.6s ease-in-out infinite;
  stroke-linecap: round;
  stroke-width: 4px; /* Ketebalan garis dipertegas */
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {
  0%, 100% {
    stroke: var(--google-blue);
  }
  25% {
    stroke: var(--google-red);
  }
  50% {
    stroke: var(--google-yellow);
  }
  75% {
    stroke: var(--google-green);
  }
}

body {
  background-color: var(--white);
}

.showbox {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5%;
}

/* Container untuk titik-titik */
.dot-loader {
  text-align: center;
}

/* Styling Dasar Titik */
.dot-loader .dot {
  display: inline-block;
  width: var(--dot-size);
  height: var(--dot-size);
  margin: 0 calc(var(--spacing) / 2);
  background-color: var(--dot-color);
  border-radius: 50%;
  animation: dot-fade var(--animation-speed) infinite ease-in-out both;
}

/* Pengaturan Jeda Waktu Animasi (Delay) */
.dot-loader .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.dot-loader .dot:nth-child(2) {
  animation-delay: -0.16s;
}

.dot-loader .dot:nth-child(3) {
  animation-delay: 0s;
}

/* Keyframes Animasi Memudar */
@keyframes dot-fade {
  0%, 80%, 100% { 
    opacity: 0; 
    transform: scale(0);
  }
  40% { 
    opacity: 1; 
    transform: scale(1);
  }
}