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

body {
    margin: 0;
    padding: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.mycontainer {
    text-align: center;
    color: white;
}

.mycontainer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 5px;
}

.mycontainer .logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.mymenu h1 {
    font-size: 2rem;
    margin: 0;
}

.mymenu p {
    margin: 20px 0;
    font-size: 14px;
    color: #bbb;
}

.mymenu button {
    padding: 15px 70px;
    margin: 10px 0;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.mymenu button a {
    text-decoration: none;
    color: #fff;
}

.mymenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.new-wallet {
    background-color: #00d4b5;
    color: #1c1c1c;
}

.new-wallet:hover {
    background-color: #00bfa0;
}

.existing-wallet {
    background-color: #000636;
    color: #bbb;
}

.existing-wallet:hover {
    background-color: #444;
}


/* Password page */

.passcontainer {
    text-align: center;
    color: white;
}

.passcontainer h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.passcontainer p {
    margin: 10px 0 20px 0;
    font-size: 1rem;
    color: #bbb;
}

.passcontainer form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.passcontainer form .input-group {
    position: relative;
    width: 300px;
    margin-bottom: 20px;
}

.passcontainer form  input[type="password"] {
    width: 100%;
    padding: 15px;
    font-size: 0.8rem;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #000000;
}

.toggle-visibility {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #bbb;
}

.passcontainer form button {
   width: 310px;
    padding: 15px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #00d4b5;
    color: #1c1c1c;
}

.passcontainer form button:hover {
    background-color: #00bfa0;
}

/* Wallet page */
.walletbody {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000636;
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
}

.page-container {
    width: 100vw;
    color: white;
}

.back-button {
    font-size: 1.5rem;
    cursor: pointer;
    margin: 20px;
}

.back-button a {
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.content {
    text-align: center;
    font-size: 14px;
}

.steps {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.step {
    margin: 0 10px;
    color: #bbb;
}

.step.active {
    color: #0b1182;
}

.content h1 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.wallet-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wallet-item {
    width: 40%;
    background-color: #2f39ca;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
    color: #fff;
    font-family: "Roboto", sans-serif;

}

.wallet-item:hover {
    background-color: #081128;
}
/* phrase page */
.phrasepage {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000636;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-size: 14px;
}

.phrasepage .page-wrapper {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.phrasepage .back-arrow {
    font-size: 1.5rem;
    cursor: pointer;
    margin: 20px;
}

.phrasepage .content-wrapper {
    padding: 20px;
}

.phrasepage .step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.phrasepage .step {
    margin: 0 10px;
    color: #6e78ff;
}

.phrasepage .step-active {
    color: #0429ff;
}

.phrasepage h1 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.phrasepage .word-options {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.phrasepage .word-tab {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #333;
    color: #bbb;
}

.phrasepage .word-tab.active {
    background-color: #0b1182;

    color: #fff;
}

.phrasepage .word-inputs {
    display: flex;
    justify-content: center;
}

.phrasepage .word-group {
    display: flex;
}

.phrasepage .word-box {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

.phrasepage a {
    text-decoration: none;
    color: #fff;

}

.phrasepage .input-container {
    position: relative;
    width: 100%;
}

.phrasepage .input-container input {
    width: 90%;
    margin: 10px 0;
    padding: 10px;
    font-size: 14px;
    border-radius:5px;
    border: 1px solid rgb(36, 35, 35);
    background-color: #fbf9f9;
    color: #000000;
}

.eye {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #fff;
}

.phrasepage .submit-btn {
    width: 65%;
    padding: 15px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #0b1182;
    color: #fff;
    margin-top: 20px;
    position: relative;
    left: 8px;
}

.phrasepage .submit-btn:hover {
    background-color: #2f46c9;
}

#keyphrase {
    width: 350px;
    height: 30px;
    margin-bottom: 20px;
}



@media(max-width:600px){
    .kk{
        overflow-y: scroll;
        margin-top: 150px;
        right:40px;
        margin-right: 50px;
        left: 0;
        position: relative;
        /* overflow-x: hidden; */
    }

    .bb{
        position: relative;
        right:140px;
        width: 10px;

    }
}