@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2023 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Variable(Variable font)
 * Satoshi Variable Italic(Variable font)
 * Satoshi Light
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: "Satoshi-Variable";
  src: url("./fonts/Satoshi-Variable.woff2") format("woff2"), url("./fonts/Satoshi-Variable.woff") format("woff"), url("./fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: "Satoshi-VariableItalic";
  src: url("./fonts/Satoshi-VariableItalic.woff2") format("woff2"), url("./fonts/Satoshi-VariableItalic.woff") format("woff"), url("./fonts/Satoshi-VariableItalic.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Light";
  src: url("./fonts/Satoshi-Light.woff2") format("woff2"), url("./fonts/Satoshi-Light.woff") format("woff"), url("./fonts/Satoshi-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-LightItalic";
  src: url("./fonts/Satoshi-LightItalic.woff2") format("woff2"), url("./fonts/Satoshi-LightItalic.woff") format("woff"), url("./fonts/Satoshi-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2"), url("./fonts/Satoshi-Regular.woff") format("woff"), url("./fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Italic";
  src: url("./fonts/Satoshi-Italic.woff2") format("woff2"), url("./fonts/Satoshi-Italic.woff") format("woff"), url("./fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("./fonts/Satoshi-Medium.woff2") format("woff2"), url("./fonts/Satoshi-Medium.woff") format("woff"), url("./fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-MediumItalic";
  src: url("./fonts/Satoshi-MediumItalic.woff2") format("woff2"), url("./fonts/Satoshi-MediumItalic.woff") format("woff"), url("./fonts/Satoshi-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Bold";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2"), url("./fonts/Satoshi-Bold.woff") format("woff"), url("./fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BoldItalic";
  src: url("./fonts/Satoshi-BoldItalic.woff2") format("woff2"), url("./fonts/Satoshi-BoldItalic.woff") format("woff"), url("./fonts/Satoshi-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Black";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2"), url("./fonts/Satoshi-Black.woff") format("woff"), url("./fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BlackItalic";
  src: url("./fonts/Satoshi-BlackItalic.woff2") format("woff2"), url("./fonts/Satoshi-BlackItalic.woff") format("woff"), url("./fonts/Satoshi-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
@media (min-width: 768px) {
  .makeAccountContainer {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    height: 100dvh;
    position: relative;
    width: 100%;
    background-color: #fff;
  }
  .makeAccountContainer .visualContainer {
    height: 100%;
    width: 50%;
    position: relative;
    z-index: 2;
  }
  .makeAccountContainer .visualContainer img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .makeAccountContainer .contentContainer {
    position: absolute;
    /* top: 50%; */
    /* padding-top: 4rem; */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8rem;
    /* transform: translate(-50%, -50%); */
    /* background-color: red; */
    width: 95%;
    max-width: 1320px;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    gap: 2rem;
    z-index: 1;
    justify-content: space-between;
  }
  .makeAccountContainer .contentContainer .accounWrapper .socialProofWrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .makeAccountContainer .contentContainer .accounWrapper .socialProofWrapper .housesWrapper {
    height: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
  }
  .makeAccountContainer .contentContainer .accounWrapper .socialProofWrapper .housesWrapper img {
    height: 100%;
  }
  .makeAccountContainer .contentContainer .accounWrapper .socialProofWrapper .numberWrapper {
    height: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
  }
  .makeAccountContainer .contentContainer .accounWrapper .socialProofWrapper .numberWrapper img {
    height: 100%;
  }
  .makeAccountContainer .contentContainer .accounWrapper .socialProofWrapper .socialText {
    font-family: "Satoshi-Bold";
    color: #26387B;
    font-size: 0.9rem;
  }
  .makeAccountContainer .contentContainer .accounWrapper .mainHeading {
    margin-top: unset !important;
    font-size: 2rem;
    font-family: "Satoshi-Bold";
    font-weight: 700;
    color: #26387B;
    max-width: 90%;
    line-height: 1.4;
    text-transform: capitalize;
  }
  .makeAccountContainer .contentContainer .accounWrapper .mainHeading span {
    font-family: "Satoshi-Black";
    /* color: #333; */
  }
  .makeAccountContainer .contentContainer .accounWrapper .subHeading {
    font-size: 1rem;
    font-family: "Satoshi-Bold";
    font-weight: 700;
    color: #26387B;
    line-height: 1.5;
    margin-top: 1.5rem;
    max-width: 80%;
    text-transform: capitalize;
  }
  .makeAccountContainer .contentContainer .accounWrapper .descriptionText {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    font-family: "Satoshi-Medium";
    color: #333;
    max-width: 100%;
    line-height: 1.5;
  }
  .makeAccountContainer .contentContainer .accounWrapper .openAccount {
    margin-top: 3rem;
    padding: 0 1.5rem;
    border: none;
    color: #fff;
    height: 2.6rem;
    font-size: 0.85rem;
    font-family: "Satoshi-Bold";
    width: -moz-fit-content !important;
    width: fit-content !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    justify-content: center;
    border-radius: 0.25rem;
    background-size: 200% 100%;
    background-color: #26387B;
    /* background-image: linear-gradient(251deg, #26387B 0%, #EB0029 50%, #26387B 100%); */
    transition: background-position 0.8s ease;
    text-transform: capitalize;
  }
  .makeAccountContainer .contentContainer .accounWrapper .openAccount:hover {
    background: linear-gradient(90deg, #26387b 0%, #EB0029 25%, #26387b 50%, #EB0029 75%, #26387b 100%);
    background-size: 400% 100%;
    animation: gradientMove 8s ease infinite, gradientPulse 3s ease-in-out infinite;
    border-radius: 10rem;
    box-shadow: 0 0 15px rgba(38, 56, 123, 0.5);
    transform: scale(1.02);
  }
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @keyframes gradientPulse {
    0% {
      background-size: 400% 100%;
    }
    50% {
      background-size: 300% 100%;
    }
    100% {
      background-size: 400% 100%;
    }
  }
  .makeAccountContainer .contentContainer .accounWrapper .openAccount:hover span {
    transform: translateX(0.2rem);
  }
  .makeAccountContainer .contentContainer .accounWrapper .openAccount .iconContainer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .makeAccountContainer .contentContainer .accounWrapper .openAccount .iconNostro {
    width: 1.2rem;
    height: 1.2rem;
  }
  .makeAccountContainer .contentContainer > div {
    width: 50%;
  } 
}
@media (max-width: 768px) {
  .makeAccountContainer {
    background-color: white;
    height: 100dvh !important;
    min-height: -moz-fit-content !important;
    min-height: fit-content !important;
  }
  .makeAccountContainer .mainHeading {
    font-size: 1.5rem;
    font-family: "Satoshi-Bold";
    color: #26387b;
    text-transform: capitalize;
    display: flex;
    padding-top: 1rem !important;
    line-height: 1.5;
    max-width: 90%;
    margin-inline: auto !important;
    text-align: center;
  }
  .makeAccountContainer .subHeading, .makeAccountContainer .descriptionText {
    margin-top: 1rem !important;
    font-size: 0.8rem;
    text-align: center;
    font-family: "Satoshi-Medium";
    color: #333;
  }
  .makeAccountContainer .openAccount {
    display: flex;
    margin-top: 2rem;
    margin-inline: auto;
    height: 2.5rem;
    padding: 0 1rem;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
    text-decoration: none !important;
    width: -moz-fit-content;
    width: fit-content;
    background: #26387b;
    font-family: "Satoshi-Bold";
    color: #fff;
    font-size: 0.8rem;
  }
  .makeAccountContainer .openAccount span {
    height: 1.2rem;
    width: 1.2rem;
  }
  .makeAccountContainer .accounWrapper {
    margin-top: 3rem;
    width: 90%;
    margin-inline: auto;
  }
  .makeAccountContainer .accounWrapper p, .makeAccountContainer .accounWrapper h1, .makeAccountContainer .accounWrapper h2 {
    padding: 0;
    margin: 0;
  }
  .makeAccountContainer .socialProofWrapper {
    display: flex;
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
  }
  .makeAccountContainer .socialProofWrapper .housesWrapper {
    height: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
  }
  .makeAccountContainer .socialProofWrapper .housesWrapper img {
    height: 100%;
  }
  .makeAccountContainer .socialProofWrapper .numberWrapper {
    height: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
  }
  .makeAccountContainer .socialProofWrapper .numberWrapper img {
    height: 100%;
  }
  .makeAccountContainer .socialProofWrapper .socialText {
    font-family: "Satoshi-Bold";
    color: #26387B;
    font-size: 0.9rem;
  }
}
@media (min-width: 1600px) {
  .makeAccountContainer {
    height: 80dvh !important;
  }
  .makeAccountContainer .visualContainer img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}/*# sourceMappingURL=openAccount.css.map */