
/*---------------------------------------------
DESKTOP VERSION STYLESHEET
-----------------------------------------------*/
@media screen and (min-width: 850px) {
/* --- Google Fonts: Montserrat --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* --- Font Awesome 6 (Icon Font) --- */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

 *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
         .overlay{
            width: 100%;
            height: 100vh;
            background-color: red;
            position: fixed;
            box-sizing: border-box;
           }

           .logo-h{
            width: 170px;
            height: 170px;
            border-radius: 340px;
            background-color: white;
              margin:30vh auto;
              display: flex;
              justify-content: center;
              transition:all 1s;
             border: 0px solid rgb(255, 0, 0);

           }



:root {
    --font-primary: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optional: Utility for font weights */
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

/* --- Icon Font Utility --- */
.v-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.2rem;
}

.container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: white;/*Theme default*/
    align-items: center;
}

 .emulator{
    width: 400px;
    min-height:300px;
    border: 1px solid rgba(211, 202, 202, 0.781);
    border-radius: 20px;
    display: block;
    overflow-y: scroll;
    overflow-y: hidden;
    padding: 1em;
 }

/* --- Space V3 Professional Alert System --- */
.alert {
    position: fixed;
    top: 2rem;
    right: 2rem;
    min-width: 320px;
    padding: 1rem 1.5rem;
    border-radius: 8px; /* Slightly sharper for a professional look */
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    
    /* Modern Glassmorphism */
    background: rgba(15, 23, 42, 0.9); /* Deep Navy/Slate background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Subtle Border & Shadow */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    
    color: #f8fafc; /* Near white text for all */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

/* Success Variant (Emerald Glow) */
.alert-success {
    border-left: 4px solid #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15), 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.alert-success i { color: #10b981; }

/* Danger Variant (Rose/Crimson Glow) */
.alert-danger {
    border-left: 4px solid #f43f5e;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.15), 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.alert-danger i { color: #f43f5e; }

/* Warning Variant (Amber/Gold Glow) */
.alert-warning {
    border-left: 4px solid #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15), 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.alert-warning i { color: #f59e0b; }

/* Icon Styling */
.alert i {
    font-size: 1.25rem;
}
  
 :root {
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --red-space: #dc2626;
    --black-space: #0a0a0a;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    /*font-weight: 400;*/
    letter-spacing: -0.02em;
}

p, span, a, li, input, button, label {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.input{
    width: 95%;
    height: 40px;
    padding: 10px;
    border: 1px solid rgba(212, 203, 203, 0.801);
    border-radius: 8px;
    display: block;
    margin: 5px auto;
    font-family: var(--font-body);
    outline:none;
    background-color: transparent;
}
  
  select{
     width: 95%;
    height: 40px;
    padding: 10px;
    border: 1px solid rgba(212, 203, 203, 0.801);
    border-radius: 8px;
    display: block;
    margin: 5px auto;
    font-family: var(--font-body);
    outline:none;
    background-color: transparent;
  }

.button{
    width: 95%;
    height: 40px;
    padding: 10px;
    border: none;
    background-color: var(--red-space);
    color: white;
    border-radius: 6px;
    display: block;
    margin: 20px auto;
    font-family: var(--font-body);
    outline: none;
    cursor: pointer;
}

.logo{
    width: 150px;
    height: auto;
    display: block;
    padding: 5px;
    margin: 1px auto;
}

.from{
    width: 70px;
    height: auto;
    display: block;
    margin: 30px auto;
}
 
 

}







/*---------------------------------------------
MOBILE VERSION STYLESHEET
-----------------------------------------------*/
@media screen and (max-width: 849px) {
/* --- Google Fonts: Montserrat --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* --- Font Awesome 6 (Icon Font) --- */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');


  *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
         .overlay{
            width: 100%;
            height: 100vh;
            background-color: red;
            position: fixed;
            box-sizing: border-box;
           }

           .logo-h{
            width: 170px;
            height: 170px;
            border-radius: 340px;
            background-color: white;
              margin:30vh auto;
              display: flex;
              justify-content: center;
              transition:all 1s;
             border: 0px solid rgb(255, 0, 0);

           }



:root {
    --font-primary: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optional: Utility for font weights */
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

/* --- Icon Font Utility --- */
.v-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.2rem;
}

.container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: white;/*Theme default*/
    align-items: center;
}

 .emulator{
    width: 100%;
    min-height:300px;
   /* border: 1px solid rgba(211, 202, 202, 0.781);*/
    border-radius: 20px;
    display: block;
    overflow-y: scroll;
    overflow-y: hidden;
    padding: 1em;
 }

 /* --- Space V3 Professional Alert System --- */
.alert {
    position: fixed;
    top: 2rem;
    right: 2rem;
    min-width: 320px;
    padding: 1rem 1.5rem;
    border-radius: 8px; /* Slightly sharper for a professional look */
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    
    /* Modern Glassmorphism */
    background: rgba(15, 23, 42, 0.9); /* Deep Navy/Slate background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Subtle Border & Shadow */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    
    color: #f8fafc; /* Near white text for all */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

/* Success Variant (Emerald Glow) */
.alert-success {
    border-left: 4px solid #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15), 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.alert-success i { color: #10b981; }

/* Danger Variant (Rose/Crimson Glow) */
.alert-danger {
    border-left: 4px solid #f43f5e;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.15), 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.alert-danger i { color: #f43f5e; }

/* Warning Variant (Amber/Gold Glow) */
.alert-warning {
    border-left: 4px solid #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15), 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.alert-warning i { color: #f59e0b; }

/* Icon Styling */
.alert i {
    font-size: 1.25rem;
}
 :root {
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --red-space: #dc2626;
    --black-space: #0a0a0a;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    /*font-weight: 400;*/
    letter-spacing: -0.02em;
}

p, span, a, li, input, button, label {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.input{
    width: 95%;
    height: 40px;
    padding: 10px;
    border: 1px solid rgba(212, 203, 203, 0.801);
    border-radius: 8px;
    display: block;
    margin: 5px auto;
    font-family: var(--font-body);
    outline:none;
    background-color: transparent;
}
  
  select{
     width: 95%;
    height: 40px;
    padding: 10px;
    border: 1px solid rgba(212, 203, 203, 0.801);
    border-radius: 8px;
    display: block;
    margin: 5px auto;
    font-family: var(--font-body);
    outline:none;
    background-color: transparent;
  }

.button{
    width: 95%;
    height: 40px;
    padding: 10px;
    border: none;
    background-color: var(--red-space);
    color: white;
    border-radius: 6px;
    display: block;
    margin: 20px auto;
    font-family: var(--font-body);
    outline: none;
    cursor: pointer;
}

.logo{
    width: 150px;
    height: auto;
    display: block;
    padding: 5px;
    margin: 1px auto;
}

.from{
    width: 70px;
    height: auto;
    display: block;
    margin: 40px auto;
}
 
 

}