@font-face {
    font-family: 'ShellHeavy';
    src: url('../fonts/ShellHeavy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ShellBold';
    src: url('../fonts/ShellBold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ShellMedium';
    src: url('../fonts/ShellMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ShellMediumItalic';
    src: url('../fonts/ShellMediumItalic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.shell-heavy {
    font-family: 'ShellHeavy', sans-serif;
}
    
    body {
            font-family: 'ShellHeavy', sans-serif !important;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background-color: #f8f9fa;
        }

        .form-container {
            max-width: 600px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }

        .form-header {
            margin-bottom: 20px;
        }

        .form-header h1 {
            margin: 0;
            font-size: 20px;
            font-weight: bold;
        }

        label {
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
        }

        input, select, .form-btn, textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
        }

        .form-btn {
            background-color: #D2232A;
            color: white;
            font-weight: bold;
            cursor: pointer;
            font-size: 15px;
            width: auto;
        }

        .form-btn:hover {
            background-color: #9B1E22;
        }

        .form-footer {
            text-align: left;
            font-size: 12px;
        }

        .form-footer input[type="checkbox"] {
            width: auto;
            margin-right: 5px;
        }
        
        .dynamic_text{
            font-size: 15px;
            border: 1px solid;
            padding: 10px;
        }
        
        .answer-select-box {
          border-top-left-radius: 0;
          border-top-right-radius: 0;
        }
        
        
        /**/
        
.upload-btn{
    background-color: #fff;
    color: #ccc;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}        
        
        
.upload-btn-wrapper {
    cursor: pointer;
	position: relative;
	overflow: hidden;
	display: inline-block;
	/*max-width: 280px;*/
	width: 100%;
    margin-top: 0px;
}
.upload-file-name {
    margin-bottom: 5px;
    color: #fff;
}
.upload-btn-wrapper .btn {
    padding: 8px 20px;
    padding-top: 8px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 10px;
    padding-top: 12px;
    border-radius: 0;
    cursor: pointer;
    margin-top: 0px;
    text-align: center;
    width: 240px;
    height: 45px;
}
.upload-btn-wrapper .btn .upload-icon {
  width: 21px;
  height: 25px;
  margin-right: 5px;
  background: url(../images/upload-icon.png) center center no-repeat;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  cursor: pointer;
}

        
        /**/
        
        
        
        
        /*cap code css*/
        
        .contoh{
            position: absolute;
            left: 30px;
            top: 25px;
        }
        
        
        /* Circular background for inputs */
        .circle-bg {
            background-color: #f8f9fa;
            width: 240px;
            height: 240px;
            border: 1px solid #e9ecef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
           
        }

        /* 2x4 Grid */
        .cap-code-grid {
            display: grid;
            grid-template-columns: repeat(4, 45px);
            grid-template-rows: repeat(2, 50px);
            gap: 2px;
        }

        .cap-code-input {
            width: 40px;
            height: 40px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            border: 1px solid #dee2e6;
            border-radius: 10px;
            background-color: #fff;
            color: #495057;
            text-transform: uppercase;
        }

        .cap-code-input:focus {
            border-color: #0d6efd;
            outline: none;
            box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
        }

        .cap-code-input::placeholder { color: #ced4da; }

        /* Reference Image Styling */
        .example-box { text-align: -webkit-center; }
        .example-img {
            width: 100%;
            max-width: 250px;
            border-radius: 12px;            display: block;
        }
        .caption { font-size: 0.85rem; color: #6c757d; margin-top: 8px; }
        
        
        
        /*cap code css*/
        
        
        /*captcha css*/
        
        /* Styles to match the screenshot look */
    .captcha-container {
      border: 2px solid #2f7d87; /* teal-ish border */
      border-radius: 12px;
      padding: 18px;
      background: #fff;
      box-shadow: none;
    }
    .captcha-label {
      font-weight: 600;
      margin-bottom: 8px;
    }
    .captcha-code {
      color: #0b72a6; /* blue text for code */
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 2px;
      margin: 0 0 12px 6px;
      user-select: none; /* prevent easy copy */
    }
    /* Make code and input align nicely on small screens */
    .captcha-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    /* Input group takes remaining width */
    .captcha-input-group {
      flex: 1 1 380px;
      min-width: 220px;
    }
    /* Make refresh button red like screenshot */
    .btn-refresh {
      background-color: #c62828;
      border-color: #b71c1c;
      color: #fff;
    }
    .btn-refresh:hover {
      background-color: #b71c1c;
    }
    /* Optional: small helper text color */
    .captcha-help {
      color: #6c757d;
      margin-top: 8px;
      margin-left: 6px;
    }
        
        /*captcha css*/
        
        
        .form-container-home{
            background-size: cover; 
            background-position: top; 
            background-repeat: no-repeat;
            border-radius: 0px;
            min-height:150vh;
        }
        
        .shell-logo{
            position: absolute;
            top: 0;
            height: 50px;
        }
        
        .text-after-shell-logo{
            padding: 0px 80px;
            margin-top: 10px;
        }
        
.home-btn1 {
    background-color: #ba191b;
    color:#fff;
    width: 335px;
    padding: 8px 0px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Default shadow */
    transition: all 0.2s ease; /* Smooth effect for hover & press */
}

/* Hover effect */
.home-btn1:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px); /* Slight lift */
    color:#fff;
}

/* Press effect */
.home-btn1:active {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(2px); /* Button goes down */
}

/* Button container */
.home-btn1 {
  display: inline-flex;
  align-items: center;    /* vertical center */
  justify-content: center; /* horizontal center */
  gap: 8px;               /* space between text and arrow */
  position: relative;
  text-decoration: none;
 
  overflow: hidden;
}

/* Text subtle up-down animation */
.home-btn1 .btn-text {
  display: inline-block;
  animation: text-move 1.5s infinite alternate ease-in-out;
}

/* Arrow subtle left-right animation */
.home-btn1 .btn-arrow i {
  display: inline-block;
  animation: arrow-move 1s infinite alternate ease-in-out;
}

/* Keyframes for text vertical movement */
@keyframes text-move {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

/* Keyframes for arrow horizontal movement */
@keyframes arrow-move {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

.home-btn2{
    background-color: #ffc50b;
    color:#000;
    width: 235px;
    font-size: 15px;
}
.home-btn2:hover {
    color:#000;
}



.parent-container {
    position: relative;
}

.home-step-box {
    height: 375px;
    position: absolute;
    left: 82%;
    margin-top: 63%;
    transform: translate(-50%, -50%);
}

.home-bottom-text{
    color: #fff;
    text-align: center;
    font-size: 10px;
    margin-top: 615px;
}

.home-footer {
   position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin-top: 90px;
}

.inner-form-container{
 background-color: #fff;   
}

.btns-container{
    position: absolute;
    top: 200px;
    left: 50%;
    display: block;
    transform: translateX(-50%);
}
  
.btns-container-text{
    padding: 0px 10px;
    display: block;
    max-width: 500px;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #000; /* Your text color */
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff,
        -2px  0   0 #fff,
         2px  0   0 #fff,
         0   -2px 0 #fff,
         0    2px 0 #fff;
}  
.btns-container-text span{
    color: red;
}
        
        
    /* Example for devices smaller than 1024px width */
@media (max-width: 1024px) {
    /* Yahan CSS rules likhein */
    
    .btns-container{
        width: 100%;
        top: 30vw;
        padding: 0 25px;
    }
    .btns-container-text{
        padding: 0px;
        font-size: 10px;
    }
    
    .shell-logo{
        height: 40px;
    }
    
    .text-after-shell-logo {
      padding: 0px 60px;
      margin-top: 10px;
     }
    
    
    .form-container-home{
         min-height:100vh;
         width: 100%;
    }
    
    .home-btn1 {
        width: 235px;
        font-size: 13px;
    }
    
     .home-btn2{
        width: 100%;
        font-size: 10px;
        height: 26px;
        padding: 5px;
    }
    
    .home-step-box {
       height: 230px;
    }
    
   
    .home-bottom-text{
        font-size: 7px;
        margin-top: 450px;
    }
   
}    

/*12 pro*/
@media only screen 
and (device-width: 390px) 
and (device-height: 844px) 
and (-webkit-device-pixel-ratio: 3) {
    .home-step-box {
       height: 230px;
    }
    
    .home-bottom-text{
        font-size: 7px;
        margin-top: 450px;
    }
          
}

/*14 pro max*/
@media only screen 
and (device-width: 430px) 
and (device-height: 932px) 
and (-webkit-device-pixel-ratio: 3) {

    .home-step-box {
       height: 260px;
    }
    
     .home-bottom-text{
        font-size: 7px;
        margin-top: 490px;
    }
          
            
}

@media only screen 
and (width: 360px) 
and (height: 740px) {

   .home-step-box {
       height: 210px;
    }

}

@media only screen 
and (device-width: 375px) 
and (device-height: 667px) 
and (-webkit-device-pixel-ratio: 2) {
   .home-step-box {
       left: 84%;
    }

}
        
        
       
        
        
        
        
        